Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions .github/workflows/docs.yml → .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Deploy Documentation
on:
push:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
workflow_dispatch:

permissions:
Expand All @@ -27,19 +24,16 @@ jobs:
with:
fetch-depth: 0

- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
enable-cache: true

- name: Set up Python
run: uv python install 3.12
python-version: "3.12"

- name: Install dependencies
run: uv pip install mkdocs-material mkdocs-minify-plugin
run: pip install mkdocs-material mkdocs-minify-plugin

- name: Build site
run: uv run mkdocs build --strict
run: mkdocs build --strict

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
Loading