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 06a9f8f commit ebb727aCopy full SHA for ebb727a
.github/workflows/deploy.yml
@@ -52,8 +52,8 @@ jobs:
52
git add -A
53
git commit -m "Update registry submodule"
54
55
- # Push using PAT stored in GH_TOKEN
56
- git push https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/Zig-Index/zig-index.github.io.git HEAD:main
+ # Push using the default GITHUB_TOKEN for this repo
+ git push https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main
57
58
build:
59
needs: check-changes
@@ -78,6 +78,9 @@ jobs:
78
79
- name: Upload Artifact for Pages
80
uses: actions/upload-pages-artifact@v3
81
+ with:
82
+ path: ./dist
83
+ name: github-pages
84
85
deploy:
86
runs-on: ubuntu-latest
src/registry
0 commit comments