There was an error while loading. Please reload this page.
1 parent 9d7b2c1 commit e2f5d80Copy full SHA for e2f5d80
1 file changed
.github/workflows/documentation.yml
@@ -16,12 +16,13 @@ jobs:
16
pip install sphinx sphinx_rtd_theme myst_parser pydata-sphinx-theme
17
- name: Sphinx build
18
run: |
19
- sphinx-build docs _build
+ cd docs
20
+ make html
21
- name: Deploy to GitHub Pages
22
uses: peaceiris/actions-gh-pages@v3
23
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
24
with:
25
publish_branch: gh-pages
26
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: _build/
27
+ publish_dir: docs/_build/html
28
force_orphan: true
0 commit comments