We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9864e52 commit 11abc79Copy full SHA for 11abc79
.github/workflows/deploy.yml
@@ -58,8 +58,21 @@ jobs:
58
echo "Generating dynamic index.html"
59
node .scripts/index-page-builder.js
60
61
- - name: Deploy
62
- uses: peaceiris/actions-gh-pages@v4
63
- with:
64
- personal_token: ${{ secrets.GH_ACTIONS_TOKEN }}
65
- publish_dir: ./build
+ deploy-coverage:
+ if: github.ref == 'refs/heads/main'
+ runs-on: ubuntu-latest
+ needs: build
+
66
+ permissions:
67
+ pages: write
68
+ id-token: write
69
70
+ environment:
71
+ # environment created automatically by GitHub
72
+ name: github-pages
73
+ url: ${{ steps.deployment.outputs.page_url }}
74
75
+ steps:
76
+ - name: Deploy to GitHub Pages
77
+ id: deployment
78
+ uses: actions/deploy-pages@v2
0 commit comments