File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,17 @@ jobs:
17
17
env :
18
18
GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - name : Checkout repository (with submodules)
21
+ uses : actions/checkout@v3
21
22
with :
22
- context : .
23
23
submodules : recursive
24
24
fetch-depth : 0
25
+
25
26
- name : Set up Python
26
27
uses : actions/setup-python@v2.2.1
27
28
with :
28
- context : .
29
29
python-version : 3.9
30
+
30
31
- name : Install sphinx
31
32
run : |
32
33
pip install sphinx
@@ -36,12 +37,14 @@ jobs:
36
37
pip install sphinx-favicon
37
38
pip install sphinxcontrib.bibtex
38
39
pip install sphinx-tabs
40
+
39
41
- name : Build
40
42
run : |
41
43
cd docs/sphinx/
42
44
make clean
43
45
make html
44
46
cp source/index_replace.html build/html/index.html
47
+
45
48
- name : Deploy
46
49
uses : peaceiris/actions-gh-pages@v3
47
50
if : ${{ github.ref == 'refs/heads/main' }}
You can’t perform that action at this time.
0 commit comments