aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-10-18 07:11:15 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-10-18 07:11:15 +0530
commit7086ce8610ec31eae09a2b4125e558dd76c04ddc (patch)
treef454a14809af271a4d4db62806df54f4ef62a65f /.github
parent6.2.1-nightly.20 [skip ci] (diff)
downloadferdium-app-7086ce8610ec31eae09a2b4125e558dd76c04ddc.tar.gz
ferdium-app-7086ce8610ec31eae09a2b4125e558dd76c04ddc.tar.zst
ferdium-app-7086ce8610ec31eae09a2b4125e558dd76c04ddc.zip
Fix issue with scheduled nightly builds
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index e9f58c5c7..f6df0f86a 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -80,8 +80,9 @@ jobs:
80 CHANGES_COUNT=$(git diff --shortstat origin/develop | wc -l) 80 CHANGES_COUNT=$(git diff --shortstat origin/develop | wc -l)
81 MANUAL_REBUILD="${{ github.event_name == 'workflow_dispatch' }}" 81 MANUAL_REBUILD="${{ github.event_name == 'workflow_dispatch' }}"
82 VERSION_BUMP="${{ contains(github.event.inputs.message, '[version bump]') }}" 82 VERSION_BUMP="${{ contains(github.event.inputs.message, '[version bump]') }}"
83 # If there were any changes only in the submodules, then...
83 if [ $CHANGES_COUNT -gt 0 ]; then 84 if [ $CHANGES_COUNT -gt 0 ]; then
84 # If there were any changes only in the submodules, then... 85 git checkout develop
85 86
86 echo "Update browserslist db" 87 echo "Update browserslist db"
87 npx browserslist@latest --update-db 88 npx browserslist@latest --update-db
@@ -93,8 +94,6 @@ jobs:
93 npm run test 94 npm run test
94 95
95 echo "Commit dependency-updates and linter changes" 96 echo "Commit dependency-updates and linter changes"
96 git config user.name github-actions
97 git config user.email github-actions@github.com
98 git commit -am "Update browserslist data updates and linter fixes [skip ci]" --no-verify || true 97 git commit -am "Update browserslist data updates and linter fixes [skip ci]" --no-verify || true
99 98
100 echo "Push all changes" 99 echo "Push all changes"