File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 1515
1616 steps :
1717 - uses : actions/checkout@v2
18- - name : Install GraphViz
19- run : |
20- sudo apt-get update -y
21- sudo apt-get install -y graphviz
2218
2319 - name : Determine current branch/tag name
2420 run : |
3632 echo "Building branch/tag ${CURBRANCH:-<unkwown>}, from git ref <$GITHUB_REF>"
3733 echo "CURBRANCH=${CURBRANCH}" >> ${GITHUB_ENV}
3834
39- - uses : ammaraskar/sphinx-action@master
40- with :
41- docs-folder : " ."
42- build-command : make -C docs/ PYTHONPATH="${GITHUB_WORKSPACE}" SPHINXOPTS="-W" BUILDDIR="$HOME/docs" CURBRANCH="${CURBRANCH:-html}" html
35+ - name : Install GraphViz
36+ run : |
37+ sudo apt-get update -y
38+ sudo apt-get install -y graphviz
39+
40+ - name : Install dependencies
41+ run : |
42+ pip install -r docs/requirements.txt
43+
44+ - name : Build docs
45+ run : |
46+ make -C docs/ SPHINXOPTS="-W" BUILDDIR="$HOME/docs" CURBRANCH="${CURBRANCH:-html}" html
You can’t perform that action at this time.
0 commit comments