We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10c0fbb commit 5499db3Copy full SHA for 5499db3
.github/workflows/deploy.yml
@@ -32,8 +32,9 @@ jobs:
32
run: npm run build
33
34
- name: Deploy to GitHub Pages
35
- uses: peaceiris/actions-gh-pages@v3
36
- with:
37
- github_token: ${{ secrets.GITHUB_TOKEN }}
38
- publish_dir: ./dist
+ run: |
+ git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
+ npm run deploy
+ env:
39
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
0 commit comments