Release version 11.6.0 #20
Workflow file for this run
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: "New plugin release" | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
make-new-release: | |
name: "Releasing plugin" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 1.8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: 'zulu' | |
- name: Restore Gradle caches | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-cache-${{ hashFiles('**/*.gradle.kts') }}-${{ hashFiles('**/gradle.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle-cache- | |
- name: Restore Gradle wrapper | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradlew') }} | |
restore-keys: | | |
${{ runner.os }}-gradle-wrapper- | |
- name: Publish plugin | |
env: | |
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }} | |
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} | |
GITHUB_KEY: ${{ secrets.GithubKey }} | |
run: ./plugin/gradlew -p ./plugin publishPlugins --no-daemon | |
- name: Create new Github release | |
env: | |
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }} | |
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} | |
GITHUB_KEY: ${{ secrets.GITHUB_TOKEN }} | |
run: ./plugin/gradlew -p ./plugin githubRelease --no-daemon | |
- name: Update VERSION_LATEST_RELEASE to new published version | |
run: cp plugin/VERSION_CURRENT.txt plugin/VERSION_LATEST_RELEASE.txt | |
- name: Update VERSION_LATEST_RELEASE | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update VERSION_LATEST_RELEASE to ${{ github.event.inputs.new_version }} |