File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Docs
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ docs :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v4
11+
12+ - name : Set up Python
13+ uses : actions/setup-python@v4
14+ with :
15+ python-version : ' 3.10'
16+
17+ - name : Install MkDocs and plugins
18+ run : |
19+ python -m pip install --upgrade pip
20+ pip install mkdocs mkdocs-material mkdocstrings
21+
22+ - name : Deploy documentation to GitHub Pages
23+ env :
24+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25+ run : mkdocs gh-deploy --force --clean --remote-branch gh-pages
Original file line number Diff line number Diff line change 7070 - name : Install MkDocs and Material theme
7171 run : |
7272 python -m pip install --upgrade pip
73- pip install mkdocs mkdocs-material
73+ pip install mkdocs mkdocs-material mkdocstrings
7474
7575 - name : Deploy documentation to GitHub Pages
7676 env :
You can’t perform that action at this time.
0 commit comments