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 e0c35a8 commit c4b5feeCopy full SHA for c4b5fee
.github/workflows/documentation.yml
@@ -19,15 +19,14 @@ jobs:
19
- name: Install dependencies
20
run: |
21
pip install -r dev-requirements.txt
22
- pip install .
23
- name: Sphinx build
24
25
- sphinx-build docs/source .
+ sphinx-build docs/source _build
26
- name: Deploy to GitHub Pages
27
uses: peaceiris/actions-gh-pages@v3
28
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
29
with:
30
publish_branch: gh-pages
31
github_token: ${{ secrets.GITHUB_TOKEN }}
32
- publish_dir: .
+ publish_dir: _build/
33
force_orphan: true
0 commit comments