Skip to content

Commit

Permalink
Update submodules to disable rebase and pull latest changes
Browse files Browse the repository at this point in the history
The commit updates the code to disable rebase when pulling the latest changes for submodules. This ensures that the submodule changes are pulled correctly.
  • Loading branch information
zanhk committed Sep 17, 2023
1 parent 95fee18 commit 598b535
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 origin main
git submodule foreach 'git config pull.rebase false; git pull origin main'
- name: "cat package.json (before bump)"
run: cat ./package.json
- name: "Automated Version Bump"
Expand Down

0 comments on commit 598b535

Please sign in to comment.