Skip to content

feat: docs cleanup (#351) #62

feat: docs cleanup (#351)

feat: docs cleanup (#351) #62

Workflow file for this run

name: Deploy Documentation
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.5.27"
- name: Set up Python
run: uv python install
- name: Install
run: uv sync --extra docs
- name: Build docs
run: uv run mkdocs build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4