Next iteration #36
This file contains hidden or 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-24.04 | |
name: Build and possibly release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: zulu | |
cache: 'maven' | |
- name: Package | |
run: ./mvnw clean package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: jar | |
path: target/nfc4pc.jar | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
id: create_release | |
uses: softprops/[email protected] | |
with: | |
files: | | |
target/nfc4pc.jar | |
fail_on_unmatched_files: true | |
body: Release ${{ github.ref_name }} | |
prerelease: true # manually promoted |