Skip to content

try gh-deploy

try gh-deploy #24

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main # Trigger deployment on pushes to main
- ldelalande/fix-deploy-docs # TODO: remove
paths:
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/deploy_docs.yaml'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install UV
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: uv sync
- name: Build the documentation
run: uv run mkdocs gh-deploy --force