Skip to content

feat(docs): update example notebooks, colab links, and huggingface ch… #124

feat(docs): update example notebooks, colab links, and huggingface ch…

feat(docs): update example notebooks, colab links, and huggingface ch… #124

Workflow file for this run

---
name: Build and deploy docs
on:
workflow_dispatch:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-dependency-glob: uv.lock
- name: Install project + dev deps
run: uv sync --locked --all-extras --dev
- name: Build documentation
run: uv run mkdocs build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4