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 bab6e36 commit c979de5Copy full SHA for c979de5
.github/workflows/docs.yml
@@ -13,13 +13,13 @@ jobs:
13
pip install sphinx sphinx_rtd_theme
14
- name: Sphinx build
15
run: |
16
- sphinx-build doc _build
+ sphinx-build docs/source docs/build
17
- name: Deploy
18
uses: peaceiris/actions-gh-pages@v3
19
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
20
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/testing' }}
21
with:
22
publish_branch: gh-pages
23
github_token: ${{ secrets.GITHUB_TOKEN }}
24
- publish_dir: _build/
+ publish_dir: docs/build/html
25
force_orphan: true
0 commit comments