diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 9ed0a1d..4aa48ce 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -31,6 +31,13 @@ jobs: - name: Run J-Link run: mvn javafx:jlink -f graphical-app/pom.xml + + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: linux-app.zip + path: | + target/app.zip build-windows: runs-on: windows-latest @@ -48,3 +55,10 @@ jobs: - name: Run J-Link run: mvn javafx:jlink -f graphical-app/pom.xml + + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: windows-app.zip + path: | + target/app.zip