Skip to content

Update reports (2026-06-29) (#431) #80

Update reports (2026-06-29) (#431)

Update reports (2026-06-29) (#431) #80

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: {}
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
with:
version: "0.9.*"
enable-cache: true
- name: Build docs
run: uv run mkdocs build --strict
deploy:
name: Deploy docs
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: true
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
with:
version: "0.9.*"
enable-cache: true
- name: Deploy docs
run: uv run mkdocs gh-deploy --force --strict
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}