Skip to content

2026

2026 #4

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
workflow_dispatch: # allow manual workflow deploy
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --frozen
- name: Deploy to GitHub Pages
run: uv run mkdocs gh-deploy --force