diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f537475..bb43d4c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,16 +103,16 @@ jobs: run: | mvn gluonfx:build -B - - name: Stage native image + - name: Prepare native image for upload run: | - mkdir ./staging/ - cp "./target/gluonfx/x86_64-linux/PDF Zoom Wizard" ./staging/pdfzoomwizard-linux + cp "./target/gluonfx/x86_64-linux/PDF Zoom Wizard" ./pdfzoomwizard-linux + tar --create --gzip --file ./pdfzoomwizard-linux.tar.gz ./pdfzoomwizard-linux - name: Upload native image uses: actions/upload-artifact@v2.2.4 with: name: artifacts - path: ./staging/pdfzoomwizard-linux + path: ./pdfzoomwizard-linux native-macos: needs: build @@ -141,16 +141,16 @@ jobs: run: | mvn gluonfx:build -B - - name: Stage native image + - name: Prepare native image for upload run: | - mkdir ./staging/ - cp "./target/gluonfx/x86_64-darwin/PDF Zoom Wizard" ./staging/pdfzoomwizard-macos + cp "./target/gluonfx/x86_64-darwin/PDF Zoom Wizard" ./pdfzoomwizard-macos + tar --create --gzip --file ./pdfzoomwizard-macos.tar.gz ./pdfzoomwizard-macos - name: Upload native image uses: actions/upload-artifact@v2.2.4 with: name: artifacts - path: ./staging/pdfzoomwizard-macos + path: ./pdfzoomwizard-macos native-windows: needs: build @@ -185,16 +185,15 @@ jobs: run: | mvn gluonfx:build -B - - name: Stage native image + - name: Prepare native image for upload run: | - mkdir ./staging/ - cp "./target/gluonfx/x86_64-windows/PDF Zoom Wizard.exe" ./staging/pdfzoomwizard-windows.exe + cp "./target/gluonfx/x86_64-windows/PDF Zoom Wizard.exe" ./pdfzoomwizard-windows.exe - name: Upload native image uses: actions/upload-artifact@v2.2.4 with: name: artifacts - path: ./staging/pdfzoomwizard-windows.exe + path: ./pdfzoomwizard-windows.exe release: if: ${{ startsWith(github.ref, 'refs/tags/v') }} diff --git a/pom.xml b/pom.xml index 3bb2f545..b5cc98af 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.github.beatngu13 pdfzoomwizard - 0.8.0-beta.3 + 0.8.0-beta.4 PDF Zoom Wizard