File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy Pages
2+ on :
3+ push :
4+ branches :
5+ - main
6+ - master
7+ permissions :
8+ contents : read
9+ pages : write
10+ id-token : write
11+ concurrency :
12+ group : " pages"
13+ cancel-in-progress : false
14+ jobs :
15+ build :
16+ runs-on : ubuntu-latest
17+ steps :
18+ - uses : actions/checkout@v4
19+ - uses : actions/setup-python@v5
20+ with :
21+ python-version : 3.x
22+ - run : pip install mkdocs-material
23+ - run : mkdocs build
24+ - uses : actions/upload-pages-artifact@v3
25+ with :
26+ path : ./site
27+ deploy :
28+ environment :
29+ name : github-pages
30+ url : ${{ steps.deployment.outputs.page_url }}
31+ runs-on : ubuntu-latest
32+ needs : build
33+ steps :
34+ - name : Deploy to GitHub Pages
35+ id : deployment
36+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ # org-dotgithub Documentation
2+
3+ Welcome to the documentation for org-dotgithub.
Original file line number Diff line number Diff line change 1+ site_name : org-dotgithub Documentation
2+ theme :
3+ name : material
You can’t perform that action at this time.
0 commit comments