From 6a2a68aa6161109f7c03c70fc8504c77a5b88bab Mon Sep 17 00:00:00 2001 From: Xander Harris Date: Tue, 23 Jul 2024 12:47:24 -0700 Subject: [PATCH] Update build command Closes #4 --- .github/workflows/pages.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 9c417ff..2c217fa 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -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: