build: my bad pt3 #4
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: Create release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/wrapper | |
key: ${{ runner.os }}-gradlew-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradlew- | |
- name: Retrieve current version number before release | |
run: sh gradlew printVersion | |
- name: Create release tag | |
id: createRelease | |
run: | | |
sh gradlew shadowJar: releaseVersion --no-commit | |
- name: Push new tag | |
run: | | |
git push origin --tags | |
- name: Create GitHub release | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: | | |
version=v$(./gradlew -q printVersion) | |
tag=$(git describe --tags --abbrev=0) | |
./gradlew -q printChangeLog | gh release create $tag --latest -t "$version" -F - ${{ github.workspace }}/plugin/build/libs/*.jar ${{ github.workspace }}/api/build/libs/*.jar |