Skip to content

docs

docs #25

Workflow file for this run

name: docs
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
pip install hatch pdocs mkdocs-material mkdocs-jupyter
hatch build
mkdocs gh-deploy --force