File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 1212 # Review gh actions docs if you want to further define triggers, paths, etc
1313 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
1414
15+ workflow_dispatch :
16+
17+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
18+ permissions :
19+ contents : read
20+ pages : write
21+ id-token : write
22+
23+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
24+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
25+ concurrency :
26+ group : " pages"
27+ cancel-in-progress : false
28+
1529jobs :
1630 build :
1731 name : Build Docusaurus
4054 name : Deploy to GitHub Pages
4155 needs : build
4256
43- # Grant GITHUB_TOKEN the permissions required to make a Pages deployment
44- permissions :
45- pages : write # to deploy to Pages
46- id-token : write # to verify the deployment originates from an appropriate source
47-
4857 # Deploy to the github-pages environment
4958 environment :
5059 name : github-pages
You can’t perform that action at this time.
0 commit comments