From d5f3d2af245e5f859b319424c3cb27b7c2fa1230 Mon Sep 17 00:00:00 2001 From: Jason Liu Date: Mon, 12 Feb 2024 12:46:45 -0500 Subject: [PATCH] fix: issue with poetry run mkdocs --- .github/workflows/mkdocs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml index b2828ba..46022b1 100644 --- a/.github/workflows/mkdocs.yml +++ b/.github/workflows/mkdocs.yml @@ -32,16 +32,16 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1.3.1 - - name: Install Requirements + - name: Install APT packages run: | sudo apt-get update && sudo apt-get install pngquant - - name: Install dependencies + - name: Install via Poetry run: poetry install --with dev,docs env: GH_TOKEN: ${{ secrets.GH_TOKEN }} - name: Build and deploy MkDocs - run: mkdocs gh-deploy --force \ No newline at end of file + run: poetry run mkdocs gh-deploy --force \ No newline at end of file