Skip to content

Working on documentation #13

Working on documentation

Working on documentation #13

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
paths:
- "website/**"
- ".github/workflows/deploy-docs.yml"
- "images/**"
- "explanations/lambert sampling/**"
- "material_gallery/thumbnails/**"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
- name: Install dependencies
run: uv sync --group docs
- name: Build and deploy site
run: uv run mkdocs gh-deploy --force --clean