Files
Pádraic Slattery 6f1f2a9ffb chore: Update outdated GitHub Actions versions (#2918)
Signed-off-by: Padraic Slattery <pgoslatara@gmail.com>
2026-02-18 08:03:24 +01:00

27 lines
710 B
YAML

on:
workflow_call:
inputs:
deploy:
type: boolean
description: "If true, the docs will be deployed."
default: false
env:
UV_FROZEN: "1"
jobs:
run-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Build docs
run: uv run mkdocs build --verbose --clean
- name: Build and push docs
if: inputs.deploy
run: uv run --no-sync mkdocs gh-deploy --force