chore(license): Clarify COPYRIGHT.md #239
Workflow file for this run
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
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
name: Maven Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
permissions: | |
contents: write | |
concurrency: | |
group: maven-${{ github.head_ref || github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
build-jar: | |
name: jar / ${{ matrix.os }} / ${{ matrix.jdk-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk-version: [ 21 ] | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-13 # Intel OSX | |
- macos-14 # ARM64 OSX | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Up JDK ${{ matrix.jdk-version }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.jdk-version }} | |
distribution: 'temurin' | |
- name: Cache Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-${{ runner.arch }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-${{ runner.arch }}-maven- | |
- name: Maven Build Jar | |
run: ./mvnw -V -B -e -ff -ntp clean package -Passembly | |
- name: Upload Jar | |
uses: actions/upload-artifact@v4 | |
continue-on-error: true | |
with: | |
name: java-${{ matrix.jdk-version }}-${{ runner.os }}-${{ runner.arch }}-jar | |
path: target/*-assembly.jar | |
retention-days: 10 | |
if-no-files-found: error |