Build & Upload Release jar with Gradle #337
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: Build & Upload Release jar with Gradle | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'master' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- 'main' | |
- 'master' | |
schedule: | |
- cron: '0 0 * * 6' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ format('{0}-{1}', github.job, github.ref) }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
java: [ 17 ] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Gradle | |
uses: ./.github/actions/gradle | |
- name: Setup JDK | |
uses: ./.github/actions/jdk | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Build with Gradle | |
run: ./gradlew clean build --info | |
- name: Upload build results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }} Java ${{ matrix.java }} Snapshot | |
path: ${{ github.workspace }}/build/libs/ | |
release: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 17 ] | |
if: github.ref_type == 'tag' || ((github.ref_name == 'main' || github.ref_name == 'master') && github.event_name != 'schedule') | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Gradle | |
uses: ./.github/actions/gradle | |
- name: Setup JDK | |
uses: ./.github/actions/jdk | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Set Release Environment Variable | |
if: github.ref_type == 'tag' | |
run: | | |
echo "CUSTOM_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV | |
- name: Build with Gradle | |
if: github.ref_type != 'tag' | |
run: ./gradlew clean build | |
- name: Build with Gradle | |
if: github.ref_type == 'tag' | |
run: ./gradlew clean build -PcustomVersion=${{ env.CUSTOM_VERSION }} | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
id: release | |
if: github.ref_type == 'tag' | |
with: | |
name: ${{ format('Release {0}', github.ref_name) }} | |
files: ${{ github.workspace }}/build/libs/* | |
prerelease: ${{ contains(github.ref_name, '-RC-') }} | |
generate_release_notes: true | |
fail_on_unmatched_files: true | |
draft: false |