[github-actions] Automatic release #71
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
name: Build Java packages | |
on: | |
push: | |
branches: | |
- 'master' | |
paths-ignore: | |
- '*.md' | |
- '.gitignore' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
- '.gitignore' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macOS-latest, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup mise | |
uses: jdx/mise-action@v2.0.3 | |
- name: Make Maven Wrapper executable | |
if: contains(matrix.os, 'win') == false | |
run: chmod +x mvnw | |
- name: Package v1 | |
run: ./mvnw --file wgtwo/pom-v1.xml package | |
- name: Package v0 | |
run: ./mvnw --file wgtwo/pom-v0.xml package |