aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-22 12:21:51 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-07-22 12:22:06 +0530
commit1157c5ee8de56114604569511ee33b33b91f38f5 (patch)
treee098e95566aeaf5c890c5aef8854b7b15195d6a4 /.github
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-1157c5ee8de56114604569511ee33b33b91f38f5.tar.gz
ferdium-app-1157c5ee8de56114604569511ee33b33b91f38f5.tar.zst
ferdium-app-1157c5ee8de56114604569511ee33b33b91f38f5.zip
Fixed issue with the version-bumping check not registering as an env var for GH actions. [skip ci]
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 1d04a14c2..8daa52a6d 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 origin/${{ env.GIT_BRANCH_NAME }} | wc -l)" 65 echo "CHANGES_COUNT=$(git diff --shortstat origin/${{ env.GIT_BRANCH_NAME }} | wc -l)" >> $GITHUB_ENV
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