Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefantaubert committed Apr 24, 2024
1 parent 1c357a6 commit a6c7177
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install --system -r "docs/requirements.txt"
python -m uv pip install --system -r ./docs/requirements.txt
- name: Build documentation
run: sphinx-build -a -b html --keep-going docs/source docs/_build
run: sphinx-build -a -b html --keep-going ./docs/source ./docs/_build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build

0 comments on commit a6c7177

Please sign in to comment.