aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ferdi-builds.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
index 61a710aad..b2d6f9b3f 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -59,8 +59,10 @@ jobs:
59 if [ $CHANGES_COUNT -gt 0 ] || [[ $MANUAL_REBUILD == "true" && $VERSION_BUMP == "true" ]]; then 59 if [ $CHANGES_COUNT -gt 0 ] || [[ $MANUAL_REBUILD == "true" && $VERSION_BUMP == "true" ]]; then
60 # Do the version bump in the 'develop' branch ONLY if there were other changes coming from the 'develop' branch 60 # Do the version bump in the 'develop' branch ONLY if there were other changes coming from the 'develop' branch
61 git checkout develop 61 git checkout develop
62 npm version -m "%s [skip ci]" prerelease --preid=nightly 62 TAG_NAME=$(npm version -m "%s [skip ci]" prerelease --preid=nightly)
63 git push origin develop 63 git push origin develop --no-verify
64 git tag $TAG_NAME
65 git push origin --tags --no-verify
64 66
65 git checkout nightly 67 git checkout nightly
66 fi 68 fi