From e8dfb475f7069a5a67047036ad2de2df8b809af9 Mon Sep 17 00:00:00 2001 From: Xander Harris Date: Tue, 23 Jul 2024 12:51:20 -0700 Subject: [PATCH] Update config Closes #4 --- .github/workflows/pages.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 798cff0..7a2f7dc 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -96,13 +96,15 @@ jobs: cache: pipenv - name: Setup pages uses: actions/configure-pages@main - - name: Build pages + - name: Prep environments run: | python3 -m venv .sphinx .sphinx/bin/pip install -U pip pipenv - .sphinx/bin/pipenv install --dev - .sphinx/bin/pipenv install --categories docs - .sphinx/bin/pipenv run sphinx-build -a -E . deploy + - name: Setup pipenv + run: | + PIPENV_VENV_IN_PROJECT=1 .sphinx/bin/pipenv install --dev + PIPENV_VENV_IN_PROJECT=1 .sphinx/bin/pipenv install --categories docs + .venv/bin/sphinx-build -a -E . deploy - name: Upload artifact uses: actions/upload-pages-artifact@main with: