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 8
8
9
9
jobs :
10
10
build :
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-24.04
12
12
permissions :
13
13
contents : write
14
14
steps :
15
15
- uses : actions/checkout@v4
16
16
with :
17
17
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
+
18
29
- name : Build HTML
19
30
uses : ammaraskar/sphinx-action@master
31
+
20
32
- name : Upload artifacts
21
33
uses : actions/upload-artifact@v4
22
34
with :
23
35
name : html-docs
24
36
path : docs/build/html/
37
+
25
38
- name : Deploy
26
39
uses : peaceiris/actions-gh-pages@v3
27
40
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