We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d46e6f commit 2408451Copy full SHA for 2408451
.github/workflows/process-release.yml
@@ -22,7 +22,12 @@ jobs:
22
23
- run: git checkout chore/release
24
25
- - run: git submodule update --init --recursive
+ - run: |
26
+ git config --file .gitmodules --get-regexp url | while read url; do
27
+ git config --file=.gitmodules $(echo "$url" | sed -E "s/[email protected]:|https:\/\/github.com\//https:\/\/${{ secrets.TOKEN_RELEASE_BOT }}:${{ secrets.TOKEN_RELEASE_BOT }}@github.com\//")
28
+ done
29
+ git submodule sync
30
+ git submodule update --init --recursive
31
32
- name: Setup
33
id: setup
0 commit comments