Skip to content

Commit

Permalink
linux doesn't allow -alpha; try _alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
artoonie committed Jun 24, 2023
1 parent 37ff825 commit 875d3db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: "Generate Releases"
on:
release:
types: [published]
# To test this workflow without creating a release, uncomment the following and add a branch name:
# push:
# branches:
# - 'branch-name'
# # To test this workflow without creating a release, uncomment the following and add a branch name:
# push:
# branches:
# - 'branch-name'

jobs:
release:
Expand Down Expand Up @@ -47,11 +47,11 @@ jobs:
# and while we could use some regex to figure out the version number automatically, it seems cleaner
# to know the expected version number upfront.
if [ ${{ runner.os }} == 'Windows' ]; then
echo "FILEPATH=build/jpackage/RCTab-1.4.0-alpha.exe" >> $GITHUB_OUTPUT
echo "FILEPATH=build/jpackage/RCTab-1.4.0.exe" >> $GITHUB_OUTPUT
elif [ ${{ runner.os }} == 'Linux' ]; then
echo "FILEPATH=build/jpackage/rctab_1.4.0-alpha-1_amd64.deb" >> $GITHUB_OUTPUT
echo "FILEPATH=build/jpackage/rctab_1.4.0-1_amd64.deb" >> $GITHUB_OUTPUT
else
echo "FILEPATH=build/jpackage/RCTab-1.4.0-alpha.dmg" >> $GITHUB_OUTPUT
echo "FILEPATH=build/jpackage/RCTab-1.4.0.dmg" >> $GITHUB_OUTPUT
fi
- name: "Create executable filename"
id: exefn
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jlink {
launcher {
// TODO Sync version number with release.yml and Main.java (github.com/BrightSpots/rcv/issues/662)
name = "RCTab"
version = "1.4.0-alpha"
version = "1.4.0"
}

jpackage {
Expand Down

0 comments on commit 875d3db

Please sign in to comment.