aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-06-10 10:35:09 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-06-10 10:35:09 +0530
commit7e1b855e0f2283daffa1b1bd30b7bb85ad623724 (patch)
tree06ff0980c1174c3f171672d00dab6ceabae229fa /.github
parentFixing misty config file to watch for the correct port (diff)
downloadferdium-app-7e1b855e0f2283daffa1b1bd30b7bb85ad623724.tar.gz
ferdium-app-7e1b855e0f2283daffa1b1bd30b7bb85ad623724.tar.zst
ferdium-app-7e1b855e0f2283daffa1b1bd30b7bb85ad623724.zip
Added ability to force a version bump on the nightly branch based on 'version bump' phrase present in trigger message.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ferdi-builds.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml
index 199c3ca25..0f5c3bc59 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -80,7 +80,7 @@ jobs:
80 echo "No changes found - terminating the build" 80 echo "No changes found - terminating the build"
81 echo "::set-output name=should_run::false" 81 echo "::set-output name=should_run::false"
82 else 82 else
83 if [ $FORCE_REBUILD != "true" ]; then 83 if [ $FORCE_REBUILD != "true" ] || [ "${{ contains(github.event.inputs.message, 'version bump')" == "true" ]; then
84 echo "Bumping version number" 84 echo "Bumping version number"
85 npm version prerelease --preid=nightly 85 npm version prerelease --preid=nightly
86 fi 86 fi