Skip to content

Add Role vocabulary; make Person/Organization full concepts #20

Add Role vocabulary; make Person/Organization full concepts

Add Role vocabulary; make Person/Organization full concepts #20

Workflow file for this run

name: docs
on:
push:
branches: [main]
pull_request:
permissions: {}
# Cancel superseded PR builds, but never a production Pages deploy mid-flight.
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # full history for git-revision-date-localized
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Build site (strict)
# --only-group: the docs build doesn't need the project or its runtime
# deps (mkdocstrings reads src/ statically) — 37 packages instead of 107
run: uv run --locked --only-group docs mkdocs build --strict
- uses: actions/upload-pages-artifact@v3
with:
path: site
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment