Skip to content

added a github action that publishes the docs to a github page on eac… #1

added a github action that publishes the docs to a github page on eac…

added a github action that publishes the docs to a github page on eac… #1

Workflow file for this run

name: Deploy Docs
on:
push:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install mkdocs mkdocs-material
- run: mkdocs build
- uses: actions/upload-artifact@v4
with:
name: docs-${{ github.sha }}
path: site/
- run: mkdocs gh-deploy --force