Skip to content

Commit

Permalink
fix paths in GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-galataud committed Apr 16, 2024
1 parent ee1a289 commit da0f4ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:

- name: Install docs requirements
run: |
pip install -r docs/requirements.txt
pip install -r doc/requirements.txt
- name: Build docs
run: |
cd docs
cd doc
make html
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
publish_dir: doc/_build/html

0 comments on commit da0f4ee

Please sign in to comment.