Skip to content

Commit

Permalink
fix: issue with poetry run mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnl committed Feb 12, 2024
1 parent 943a253 commit d5f3d2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: poetry run mkdocs gh-deploy --force

0 comments on commit d5f3d2a

Please sign in to comment.