Next iteration #31
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
on: | |
push: | |
tags: | |
- 'v*' | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: Build robot | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build and possibly release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.5.3 | |
- name: Setup Java | |
uses: actions/setup-java@v3.11.0 | |
with: | |
java-version: 17 | |
distribution: zulu | |
cache: 'gradle' | |
- name: Package | |
run: date +%y.%m.%d.${{github.run_number}} > version.txt && ./gradlew --no-daemon shadowJar | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: jar | |
path: build/libs/nfc4pc-*.jar | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
id: create_release | |
uses: softprops/action-gh-release@v0.1.15 | |
with: | |
files: | | |
build/libs/nfc4pc-*.jar | |
fail_on_unmatched_files: true | |
body: Release ${{ github.ref_name }} | |
prerelease: true # manually promoted |