We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b3a90c commit 110b4b1Copy full SHA for 110b4b1
.github/workflows/sphinx.yml
@@ -29,11 +29,10 @@ jobs:
29
- name: Install dependencies
30
run: |
31
pip install poetry
32
- poetry install --with docs
+ poetry install --only docs
33
- name: Build HTML
34
35
- cd docs/
36
- make clean html && make html
+ poetry run sphinx-build -b html docs/ docs/_build
37
- name: Run ghp-import (push docs on gh-pages branch to github pages)
38
39
- poetry run ghp-import -n -p -f docs/_build/html
+ poetry run ghp-import -n -p -f docs/_build
0 commit comments