Skip to content

Commit

Permalink
Update build command
Browse files Browse the repository at this point in the history
Closes #4
  • Loading branch information
edwardtheharris committed Jul 23, 2024
1 parent 9d8bbb3 commit 6a2a68a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,10 @@ jobs:
uses: actions/configure-pages@main
- name: Build pages
run: |
python3 -m venv .venv
.venv/bin/pip install -U pip pipenv
.venv/bin/pipenv requirements --categories docs > requirements
.venv/bin/python3 -m pip install -r requirements -v
.venv/bin/sphinx-build -a -E . deploy
python3 -m venv .sphinx
.sphinx/bin/pip install -U pip pipenv
.sphinx/bin/pipenv install --categories docs
.sphinx/bin/pipenv run sphinx-build -a -E . deploy
- name: Upload artifact
uses: actions/upload-pages-artifact@main
with:
Expand Down

0 comments on commit 6a2a68a

Please sign in to comment.