File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 build :
11- runs-on : ubuntu-latest
11+ runs-on : ubuntu-24.04
1212 permissions :
1313 contents : write
1414 steps :
1515 - uses : actions/checkout@v4
1616 with :
1717 persist-credentials : false
18+
19+ - name : Set up Python
20+ uses : actions/setup-python@v4
21+ with :
22+ python-version : ' 3.12'
23+
24+ - name : Install dependencies
25+ run : |
26+ python -m pip install --upgrade pip
27+ pip install -r docs/requirements.txt
28+
1829 - name : Build HTML
1930 uses : ammaraskar/sphinx-action@master
31+
2032 - name : Upload artifacts
2133 uses : actions/upload-artifact@v4
2234 with :
2335 name : html-docs
2436 path : docs/build/html/
37+
2538 - name : Deploy
2639 uses : peaceiris/actions-gh-pages@v3
2740 if : github.ref == 'refs/heads/master'
Original file line number Diff line number Diff line change 1- furo == 2021.11.16
1+ furo == 2021.11.16
2+ Sphinx == 7.4.7
3+ sphinx-rtd-theme == 3.0.2
You can’t perform that action at this time.
0 commit comments