Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Kueppers committed May 25, 2023
1 parent bbdb87d commit ad16edd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
pip install -r requirements.txt
cd docs/ && pip install -r requirements.txt
- name: Sphinx build
run: |
make html
cd docs/ && make html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: main
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/
publish_dir: docs/build/
force_orphan: true

0 comments on commit ad16edd

Please sign in to comment.