Release new plugin version #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Release new plugin version" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_version: | ||
description: 'The version to release. The version format is MAJOR.MINOR.PATCH' | ||
required: true | ||
jobs: | ||
Release new plugin version: | ||
runs-on: ubuntu-latest | ||
env: | ||
RELEASE_VERSION: ${{ release_version }} | ||
Check failure on line 14 in .github/workflows/release.yml GitHub Actions / Release new plugin versionInvalid workflow file
|
||
GRADLE_KEY: ${{ secrets.GRADLE_KEY }} | ||
GRADLE_SECRET: ${{ secrets.GRADLE_SECRET }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: zulu | ||
java-version: 11 | ||
- name: Publish plugin | ||
run: ./gradlew publishPlugins |