Skip to content

Commit 3a318bf

Browse files
committed
Fixed release script. Was marking prerelease on stable releases and vice versa.
1 parent 48a7adb commit 3a318bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mvn clean package
2020
#Next build the installer because we need to sign it and bundle it
2121
cd ../installer
2222
mvn clean package
23-
if [ "$GITHUB_REF_TYPE" != "tag" ] || ! [[ "$GITHUB_REF_NAME" =~ "-alpha" ]]; then
23+
if [ "$GITHUB_REF_TYPE" != "tag" ] || [[ "$GITHUB_REF_NAME" =~ "-alpha" ]]; then
2424
# IF this is not a tag, or it is a tagged prerelease, then we'll mark the installer as
2525
# a prerelease installer so that it gets the latest installer - even prerelease.
2626
JDEPLOY_BUNDLE_PRERELEASE=true java -jar "$JDEPLOY" clean package

0 commit comments

Comments
 (0)