File tree Expand file tree Collapse file tree 1 file changed +18
-18
lines changed
Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Original file line number Diff line number Diff line change 1- name : deploy
1+ name : Deploy
22on :
33 workflow_dispatch :
44 push :
55 branches : [main]
6- permissions :
7- contents : read
8- pages : write
9- id-token : write
10- concurrency :
11- group : pages
12- cancel-in-progress : false
136jobs :
14- docs :
7+ deploy-pages :
8+ name : Deploy Pages
159 runs-on : ubuntu-latest
10+ permissions :
11+ id-token : write
12+ pages : write
1613 environment :
1714 name : github-pages
18- url : ${{ steps.deployment.outputs.page_url }}
15+ url : ${{ steps.deploy-pages.outputs.page_url }}
16+ concurrency :
17+ group : pages
18+ cancel-in-progress : true
1919 steps :
20+ - name : Setup Pages
21+ 22+
2023 - name : Checkout
21242225
23- - name : Install requirements
26+ - name : Install Requirements
2427 run : pip3 install -r docs/requirements.txt
2528
26- - name : Setup Pages
27- 28-
29- - name : Build with Sphinx
29+ - name : Build Documentation
3030 run : sphinx-build -b html docs docs/build -W --keep-going
3131
32- - name : Upload artifact
32+ - name : Upload Documentation
33333434 with :
3535 path : docs/build
3636
37- - name : Deploy to GitHub Pages
38- id : deployment
37+ - name : Deploy Pages
38+ id : deploy-pages
3939
You can’t perform that action at this time.
0 commit comments