Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
gphipps authored and gphipps committed Jul 25, 2024
1 parent 69f60c3 commit cf4d10e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
with:
python-version: "3.12"
- name: Install dependencies
run: python -m pip install .[docs] --upgrade pip
run: |
python -m pip install .[docs] --upgrade pip
pip install sphinx sphinx-rtd-theme
- name: Generate API docs & Build sphinx documentation
run: |
sphinx-build -M help docs docs-out
Expand All @@ -30,7 +32,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/pages'
path: './docs-out'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit cf4d10e

Please sign in to comment.