Skip to content

Commit

Permalink
ci: install python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tippfehlr committed Mar 11, 2024
1 parent 8d3912d commit e986f44
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/material-for-mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs build --site-dir public
- name: install mkdocs-material
run: pip install mkdocs-material
- name: install other python dependencies
run: pip install $(mkdocs-material get-deps)
working-directory: docs
- name: build static site
run: mkdocs build --site-dir public
working-directory: docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit e986f44

Please sign in to comment.