File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Deploy GitHub Pages
33on :
44 push :
55 branches :
6- - main
6+ - master
77 workflow_dispatch :
88
99permissions :
@@ -25,13 +25,26 @@ jobs:
2525 - name : Checkout
2626 uses : actions/checkout@v4
2727
28+ - name : Setup Python
29+ uses : actions/setup-python@v4
30+ with :
31+ python-version : ' 3.9'
32+
33+ - name : Install dependencies
34+ run : |
35+ pip install mkdocs-material
36+
37+ - name : Build site
38+ run : |
39+ mkdocs build
40+
2841 - name : Setup Pages
2942 uses : actions/configure-pages@v4
3043
3144 - name : Upload artifact
3245 uses : actions/upload-pages-artifact@v3
3346 with :
34- path : docs/progress
47+ path : site
3548
3649 - name : Deploy to GitHub Pages
3750 id : deployment
Original file line number Diff line number Diff line change 11site_name : My AI Project
22site_description : Documentation for My AI Project
33site_author : My AI Team
4+ site_url : https://jiangbingo.github.io/my_ai/
45
56theme :
67 name : material
You can’t perform that action at this time.
0 commit comments