Skip to content

Commit

Permalink
fix version numbers for artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
kunstmusik committed Sep 10, 2023
1 parent f7f4d86 commit aea6ab7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/blue_ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/upload-artifact@v2
with:
name: Blue (macOS arm64 .app)
path: application/target/blue-macOS-arm64-2.9.0.zip
path: application/target/blue-macOS-arm64-2.9.1.zip
macos_x86_64:
runs-on: macos-latest
steps:
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/upload-artifact@v2
with:
name: Blue (macOS x86_64 .app)
path: application/target/blue-macOS-x86_64-2.9.0.zip
path: application/target/blue-macOS-x86_64-2.9.1.zip
linux:
runs-on: ubuntu-latest
steps:
Expand All @@ -51,12 +51,12 @@ jobs:
- name: Build Blue
run: mvn -Dmaven.test.skip=true -Pgenerate-manual clean install

- run: mv application/target/blue-2.9.0.zip blue-linux-2.9.0.zip
- run: mv application/target/blue-2.9.1.zip blue-linux-2.9.1.zip

- uses: actions/upload-artifact@v2
with:
name: Blue Linux Zip
path: blue-linux-2.9.0.zip
path: blue-linux-2.9.1.zip

windows:
runs-on: windows-latest
Expand All @@ -71,9 +71,9 @@ jobs:
- name: Build Blue
run: mvn -Pgenerate-manual clean install

- run: mv application/target/blue-2.9.0.zip blue-windows-2.9.0.zip
- run: mv application/target/blue-2.9.1.zip blue-windows-2.9.1.zip

- uses: actions/upload-artifact@v2
with:
name: Blue Windows Zip
path: blue-windows-2.9.0.zip
path: blue-windows-2.9.1.zip
2 changes: 1 addition & 1 deletion application/build-mac.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<property name="app.name" value="blue"/>
<!-- for Info.plist, must be only numbers and periods per Apple guidelines -->
<property name="app.version" value="2.9.0"/>
<property name="app.version" value="2.9.1"/>
<property name="app.root" value="target/${app.name}.app"/>
<property name="blue.root" value="target/${app.name}.app/Contents/Resources/blue/"/>

Expand Down

0 comments on commit aea6ab7

Please sign in to comment.