aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-18 12:40:35 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-07-18 12:42:45 +0530
commit42ab38b2d3705578efca9ba16c8fdc07af857e35 (patch)
tree7c3a691176587f0da82385c16a495aeed11b2f48 /.github
parentSlight perf improvement for GH build checkout action; removed unused workflow. (diff)
downloadferdium-app-42ab38b2d3705578efca9ba16c8fdc07af857e35.tar.gz
ferdium-app-42ab38b2d3705578efca9ba16c8fdc07af857e35.tar.zst
ferdium-app-42ab38b2d3705578efca9ba16c8fdc07af857e35.zip
Fixed issue with error hiding version bump.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dependency-updates.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/dependency-updates.yml b/.github/workflows/dependency-updates.yml
index f55f28334..1d04a14c2 100644
--- a/.github/workflows/dependency-updates.yml
+++ b/.github/workflows/dependency-updates.yml
@@ -62,7 +62,7 @@ jobs:
62 git config user.name github-actions 62 git config user.name github-actions
63 git config user.email github-actions@github.com 63 git config user.email github-actions@github.com
64 git commit -am "Update submodules, browserslist data updates and linter fixes [skip ci]" --no-verify || true 64 git commit -am "Update submodules, browserslist data updates and linter fixes [skip ci]" --no-verify || true
65 echo "CHANGES_COUNT=$(git diff --shortstat @{u} | wc -l)" 65 echo "CHANGES_COUNT=$(git diff --shortstat origin/${{ env.GIT_BRANCH_NAME }} | wc -l)"
66 - name: Bump version number if this is a scheduled build with changes or has been manually triggered with 'version bump' in the text, then bump the version number 66 - name: Bump version number if this is a scheduled build with changes or has been manually triggered with 'version bump' in the text, then bump the version number
67 if: ${{ (github.event_name == 'schedule' && env.CHANGES_COUNT != '0') || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, 'version bump')) }} 67 if: ${{ (github.event_name == 'schedule' && env.CHANGES_COUNT != '0') || (github.event_name == 'workflow_dispatch' && contains(github.event.inputs.message, 'version bump')) }}
68 run: npm version prerelease --preid=nightly 68 run: npm version prerelease --preid=nightly