File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 12
12
13
13
environment :
14
14
PIP_INSTALL : python -m pip install --progress-bar off --upgrade
15
+ SPHINX : python -m sphinx -W --keep-going --color
15
16
16
17
steps :
17
18
- checkout
@@ -65,27 +66,27 @@ jobs:
65
66
- run :
66
67
name : Building HTML
67
68
command : |
68
- python3 setup.py build_sphinx -W -b html
69
+ $SPHINX -d build/doctrees doc build/html -b html
69
70
70
71
- store_artifacts :
71
72
name : Uploading HTML files
72
- path : build/sphinx/ html
73
+ path : build/html
73
74
destination : html
74
75
75
76
- run :
76
77
name : Building LaTeX
77
78
command : |
78
- python3 setup.py build_sphinx -W -b latex
79
+ $SPHINX -d build/doctrees doc build/latex -b latex
79
80
80
81
- run :
81
82
name : Building PDF
82
83
command : |
83
- cd build/sphinx/ latex
84
+ cd build/latex
84
85
latexmk -pdflua
85
86
86
87
- store_artifacts :
87
88
name : Uploading PDF file
88
- path : build/sphinx/ latex/nbsphinx.pdf
89
+ path : build/latex/nbsphinx.pdf
89
90
destination : nbsphinx.pdf
90
91
91
92
workflows :
You can’t perform that action at this time.
0 commit comments