Skip to content

Commit b25f70b

Browse files
committed
fix: always sync branches regardless of beta versions
- Remove job-level condition that skipped sync when no beta versions - Move beta check to version update step only - Ensure main changes are always synced to develop/staging - Fixes issue where workflow changes weren't synced
1 parent 390404b commit b25f70b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ jobs:
5555
update-versions:
5656
name: Update Versions and Sync
5757
needs: check-versions
58-
if: needs.check-versions.outputs.has_beta == 'true'
5958
runs-on: ubuntu-latest
6059
permissions:
6160
contents: write
@@ -86,6 +85,7 @@ jobs:
8685
git config user.email "github-actions[bot]@users.noreply.github.com"
8786
8887
- name: Update versions
88+
if: needs.check-versions.outputs.has_beta == 'true'
8989
id: version-update
9090
run: |
9191
echo "📝 Updating package versions..."

0 commit comments

Comments
 (0)