Skip to content

ci: try to fix docs deploy #2

ci: try to fix docs deploy

ci: try to fix docs deploy #2

Workflow file for this run

name: Docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
name: Deploy documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install mkdocs-material
run: pip install mkdocs-material
- name: Deploy Documentation
run: |
mkdocs gh-deploy --force
mkdocs --version