From bce9e7f617391d6555831e0c564d398857a7997f Mon Sep 17 00:00:00 2001 From: Sergei Konik Date: Sat, 20 Jul 2024 12:23:06 +0300 Subject: [PATCH] chore: run sphinx build inside poetry shell --- .github/workflows/documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 996875f..3c7aaec 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -17,7 +17,7 @@ jobs: poetry install - name: Sphinx build run: | - sphinx-build docs _build + poetry run sphinx-build docs _build - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}