Skip to content

fix: add download links to notebooks (#94) #47

fix: add download links to notebooks (#94)

fix: add download links to notebooks (#94) #47

Workflow file for this run

name: Build docs
on:
push:
branches:
- main
paths:
- 'docs/**'
jobs:
build-notebooks:
uses: ./.github/workflows/build-notebooks.yml
secrets: inherit
deploy:
needs: build-notebooks
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.5"
- name: Set up Python
run: uv python install
- name: Install dependencies for docs
run: uv sync --group docs
- name: Download artifact from previous step
uses: actions/download-artifact@v5
with:
name: notebooks
path: docs/notebooks
- name: Build and deploy docs
run: uv run mkdocs gh-deploy --force --clean --verbose