File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- uses : actions/checkout@v4
9
- - uses : sphinx-toolbox/sphinx-action@master
9
+ - uses : actions/setup-python@v5
10
10
with :
11
- pre-build-command : " pip install .[docs]"
12
- docs-folder : " docs/"
11
+ python-version : " 3.11"
12
+ - name : Build docs
13
+ run : |
14
+ pip install .[docs]
15
+ make -C docs html
13
16
- name : Deploy
14
17
uses : peaceiris/actions-gh-pages@v4
15
18
if : github.ref == 'refs/heads/master'
Original file line number Diff line number Diff line change @@ -23,10 +23,13 @@ jobs:
23
23
runs-on : ubuntu-latest
24
24
steps :
25
25
- uses : actions/checkout@v4
26
- - uses : sphinx-toolbox/sphinx-action@master
26
+ - uses : actions/setup-python@v5
27
27
with :
28
- pre-build-command : " pip install .[docs]"
29
- docs-folder : " docs/"
28
+ python-version : " 3.11"
29
+ - name : Build docs
30
+ run : |
31
+ pip install .[docs]
32
+ make -C docs html
30
33
- name : Deploy Preview
31
34
32
35
with :
You can’t perform that action at this time.
0 commit comments