Skip to content

Commit

Permalink
Merge branch 'release/0.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
beatngu13 committed Jun 29, 2021
2 parents a93de55 + 9b1b144 commit 5db3018
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
name: artifacts
path: ./staging/pdfzoomwizard-linux
path: ./pdfzoomwizard-linux

native-macos:
needs: build
Expand Down Expand Up @@ -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/[email protected]
with:
name: artifacts
path: ./staging/pdfzoomwizard-macos
path: ./pdfzoomwizard-macos

native-windows:
needs: build
Expand Down Expand Up @@ -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/[email protected]
with:
name: artifacts
path: ./staging/pdfzoomwizard-windows.exe
path: ./pdfzoomwizard-windows.exe

release:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.github.beatngu13</groupId>
<artifactId>pdfzoomwizard</artifactId>
<version>0.8.0-beta.3</version>
<version>0.8.0-beta.4</version>

<name>PDF Zoom Wizard</name>

Expand Down

0 comments on commit 5db3018

Please sign in to comment.