aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-06-10 10:42:46 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-06-10 10:42:46 +0530
commita83ebb9bcea947f44f366e88f9ce4741e22a97cc (patch)
treeb19eb820d8c3c8680ac8275f22c577edb7b4be3a
parentAdded ability to force a version bump on the nightly branch based on 'version... (diff)
downloadferdium-app-a83ebb9bcea947f44f366e88f9ce4741e22a97cc.tar.gz
ferdium-app-a83ebb9bcea947f44f366e88f9ce4741e22a97cc.tar.zst
ferdium-app-a83ebb9bcea947f44f366e88f9ce4741e22a97cc.zip
Fixing incorrect expression
-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 0f5c3bc59..434b6bc5e 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" ] || [ "${{ contains(github.event.inputs.message, 'version bump')" == "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