Skip to content

Commit 7fda77d

Browse files
Fix submodule paths in deploy workflow
1 parent 5235d1a commit 7fda77d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
submodules: recursive
20+
token: ${{ secrets.GH_TOKEN }}
2021

2122
- name: Update registry submodule
2223
run: |
23-
git submodule update --remote --merge sc/registry
24+
git submodule update --remote --merge src/registry
2425
if [[ -n "$(git status --porcelain)" ]]; then
2526
git config user.name "github-actions[bot]"
2627
git config user.email "github-actions[bot]@users.noreply.github.com"
27-
git add sc/registry
28+
git add src/registry
2829
git commit -m "Auto-update registry"
2930
git push
3031
echo "changed=true" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)