File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 3131
3232 - name : Check for changes since last beta release
3333 id : changes
34+ env :
35+ FORCE_BUILD : ${{ github.event.inputs.force_build }}
3436 run : |
3537 LAST_BETA=$(git tag -l "*b*" --sort=-version:refname | head -n1)
3638
4547 echo "commit_count=$COMMIT_COUNT" >> $GITHUB_OUTPUT
4648 echo "last_beta=$LAST_BETA" >> $GITHUB_OUTPUT
4749
48- if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ github.event.inputs.force_build == 'true' }} " = "true" ]; then
50+ if [ "$COMMIT_COUNT" -gt 0 ] || [ "$FORCE_BUILD " = "true" ]; then
4951 echo "has_changes=true" >> $GITHUB_OUTPUT
5052 else
5153 echo "has_changes=false" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 3131
3232 - name : Check for changes since last alpha release
3333 id : changes
34+ env :
35+ FORCE_BUILD : ${{ github.event.inputs.force_build }}
3436 run : |
3537 LAST_ALPHA=$(git tag -l "*alpha*" --sort=-version:refname | head -n1)
3638
4648 echo "Commits since last alpha: $COMMIT_COUNT"
4749 echo "commit_count=$COMMIT_COUNT" >> $GITHUB_OUTPUT
4850
49- if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ github.event.inputs.force_build == 'true' }} " = "true" ]; then
51+ if [ "$COMMIT_COUNT" -gt 0 ] || [ "$FORCE_BUILD " = "true" ]; then
5052 echo "has_changes=true" >> $GITHUB_OUTPUT
5153 echo "✅ Changes detected, proceeding with nightly build"
5254 else
You can’t perform that action at this time.
0 commit comments