aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-28 08:40:52 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-07-28 08:40:52 +0530
commit1340094890038c39790597d91d9e5f47a60b3021 (patch)
treef8dca71361d0f6a2c710eb1911d8ea144d9b8a8f /.github
parentFixing incorrect syntax for GH action workflow. [skip ci] (diff)
downloadferdium-app-1340094890038c39790597d91d9e5f47a60b3021.tar.gz
ferdium-app-1340094890038c39790597d91d9e5f47a60b3021.tar.zst
ferdium-app-1340094890038c39790597d91d9e5f47a60b3021.zip
Fixing incorrect syntax for GH action workflow. [skip ci]
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 a3faf4ca6..61a710aad 100644
--- a/.github/workflows/ferdi-builds.yml
+++ b/.github/workflows/ferdi-builds.yml
@@ -56,7 +56,7 @@ jobs:
56 CHANGES_COUNT=$(git diff --shortstat origin/develop | wc -l) 56 CHANGES_COUNT=$(git diff --shortstat origin/develop | wc -l)
57 MANUAL_REBUILD="${{ github.event_name == 'workflow_dispatch' }}" 57 MANUAL_REBUILD="${{ github.event_name == 'workflow_dispatch' }}"
58 VERSION_BUMP="${{ contains(github.event.inputs.message, '[version bump]') }}" 58 VERSION_BUMP="${{ contains(github.event.inputs.message, '[version bump]') }}"
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 npm version -m "%s [skip ci]" prerelease --preid=nightly