Skip to content

Commit

Permalink
Update sphinx.yml
Browse files Browse the repository at this point in the history
Add source docs directory to build html in pages.
  • Loading branch information
anjodasilva committed May 9, 2024
1 parent f8974a9 commit 3eef043
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements.txt
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Build HTML
run: |
cd ./docs/
make clean
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html
publish_dir: ./docs/build/html

0 comments on commit 3eef043

Please sign in to comment.