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 5235d1a commit 7fda77dCopy full SHA for 7fda77d
.github/workflows/deploy.yml
@@ -17,14 +17,15 @@ jobs:
17
- uses: actions/checkout@v4
18
with:
19
submodules: recursive
20
+ token: ${{ secrets.GH_TOKEN }}
21
22
- name: Update registry submodule
23
run: |
- git submodule update --remote --merge sc/registry
24
+ git submodule update --remote --merge src/registry
25
if [[ -n "$(git status --porcelain)" ]]; then
26
git config user.name "github-actions[bot]"
27
git config user.email "github-actions[bot]@users.noreply.github.com"
- git add sc/registry
28
+ git add src/registry
29
git commit -m "Auto-update registry"
30
git push
31
echo "changed=true" >> $GITHUB_OUTPUT
0 commit comments