Skip to content

Commit

Permalink
fix update mkdocs CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alanceloth committed Mar 17, 2024
1 parent a09bca9 commit 479c465
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/update-mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@ jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Update mkdocs
run: |
pip install mkdocs
mkdocs gh-deploy --force
name: Checkout code
uses: actions/checkout@v2


- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

name: Install dependencies
run: pip install mkdocs mkdocs-material

- name: Deploy GitHub Pages
run: mkdocs gh-deploy --force --clean --verbose

0 comments on commit 479c465

Please sign in to comment.