File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5252 if : github.event_name == 'pull_request' && github.base_ref == 'dev'
5353 run : |
5454 echo "Testing documentation build for PR..."
55- sphinx-build docs/source docs/build/html
55+ poetry run sphinx-build docs/source docs/build/html
5656
5757
5858 - name : Generate missing tags list
@@ -86,14 +86,14 @@ jobs:
8686 echo "Building docs for $TAG..."
8787 git checkout $TAG
8888 mkdir -p docs/build/versions/$TAG
89- sphinx-build docs/source docs/build/versions/$TAG
89+ poetry run sphinx-build docs/source docs/build/versions/$TAG
9090 done
9191
9292 - name : Build documentation for dev branch
9393 if : github.ref == 'refs/heads/dev'
9494 run : |
9595 echo "Building docs for dev branch..."
96- sphinx-build docs/source docs/build/versions/dev
96+ poetry run sphinx-build docs/source docs/build/versions/dev
9797
9898 - name : Deploy to GitHub Pages
9999 if : github.event_name != 'pull_request'
You can’t perform that action at this time.
0 commit comments