Skip to content

Commit e2f5d80

Browse files
committed
changed documentation workflow
1 parent 9d7b2c1 commit e2f5d80

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ jobs:
1616
pip install sphinx sphinx_rtd_theme myst_parser pydata-sphinx-theme
1717
- name: Sphinx build
1818
run: |
19-
sphinx-build docs _build
19+
cd docs
20+
make html
2021
- name: Deploy to GitHub Pages
2122
uses: peaceiris/actions-gh-pages@v3
2223
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
2324
with:
2425
publish_branch: gh-pages
2526
github_token: ${{ secrets.GITHUB_TOKEN }}
26-
publish_dir: _build/
27+
publish_dir: docs/_build/html
2728
force_orphan: true

0 commit comments

Comments
 (0)