Skip to content

Try to use different names of GitWave.zip for different OS, part 4 #8

Try to use different names of GitWave.zip for different OS, part 4

Try to use different names of GitWave.zip for different OS, part 4 #8

Workflow file for this run

name: Build and Package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java-version: [11]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
- name: Build with Maven
run: mvn package
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v4
with:
name: GitWave_${{ matrix.os }}
path: target/GitWave.zip