Skip to content

chore(deps): bump actions/setup-python in the github-actions group (#28) #34

chore(deps): bump actions/setup-python in the github-actions group (#28)

chore(deps): bump actions/setup-python in the github-actions group (#28) #34

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
workflow_dispatch: # Allow manual trigger
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
env:
NO_MKDOCS_2_WARNING: "true"
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install dependencies
run: |
uv sync --frozen --group dev
- name: Configure Git
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Deploy to GitHub Pages
run: |
uv run mkdocs gh-deploy --force