Next iteration #33
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/[email protected] | |
- name: Setup Java | |
uses: actions/[email protected] | |
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/[email protected] | |
with: | |
name: jar | |
path: build/libs/nfc4pc-*.jar | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
id: create_release | |
uses: softprops/[email protected] | |
with: | |
files: | | |
build/libs/nfc4pc-*.jar | |
fail_on_unmatched_files: true | |
body: Release ${{ github.ref_name }} | |
prerelease: true # manually promoted |