aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/builds.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 4998dcf94..186e06dda 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -75,9 +75,9 @@ jobs:
75 git push origin develop --no-verify 75 git push origin develop --no-verify
76 git checkout - 76 git checkout -
77 77
78 git submodule update --init --recursive --remote --rebase --force 78 git rebase develop
79 79
80 CHANGES_COUNT=$(git diff --shortstat origin/develop | wc -l) 80 CHANGES_COUNT=$(git log @{u}.. | 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 there were any changes only in the submodules, then...