Skip to content

Update to cf standard name table v93 (2026-03-17) #173

Update to cf standard name table v93 (2026-03-17)

Update to cf standard name table v93 (2026-03-17) #173

Workflow file for this run

name: Build Docs
on:
push:
branches: [ master ]
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-docs:
runs-on: ubuntu-24.04-arm
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v7.6.0
with:
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Sphinx Build HTML docs
working-directory: docs
env:
SPHINXBUILD: "uv run sphinx-build"
run: make html
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v4
with:
path: ./docs/_build/html
deploy:
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch'}}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-24.04-arm
needs: build-docs
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5