Skip to content

Documentation

Documentation #3

Workflow file for this run

name: Publish Documentation
on: workflow_dispatch
permissions:
contents: write
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
pip install hatch-mkdocs
- name: Build docs
run: hatch run docs:build
- name: Deploy docs
run: hatch run docs:deploy