Skip to content

Commit

Permalink
Update submodule pull command to disable rebase
Browse files Browse the repository at this point in the history
The commit updates the pull command for submodules in order to disable rebase. This ensures that unrelated histories are allowed when pulling changes from the main branch.
  • Loading branch information
zanhk committed Sep 17, 2023
1 parent c6457fc commit 2c1eb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: "Initialize and Update Submodules"
run: |
echo "Pulling latest submodules changes"
git submodule foreach 'git pull --allow-unrelated-histories origin main'
git submodule foreach 'git config pull.rebase false; git pull --allow-unrelated-histories origin main'
- name: "cat package.json (before bump)"
run: cat ./package.json
- name: "Automated Version Bump"
Expand Down

0 comments on commit 2c1eb2b

Please sign in to comment.