From 2c0b68a6539553b7a5d4ffce1ad5d2fe2ee55c59 Mon Sep 17 00:00:00 2001 From: noahhusby <32528627+noahhusby@users.noreply.github.com> Date: Sun, 15 Sep 2024 21:17:37 -0400 Subject: [PATCH] Run pdoc command in poetry context --- .github/workflows/pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index a1c057c..3f0d981 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -36,7 +36,7 @@ jobs: poetry config virtualenvs.in-project true - name: 🏗 Install dependencies run: poetry install --no-interaction --with docs - - run: pdoc ./aiostreammagic -o docs/ + - run: poetry run python -m pdoc ./aiostreammagic -o docs/ - name: Setup Pages uses: actions/configure-pages@v5 - name: Upload artifact