Skip to content

Refresh tests/ro-crate with WRROC 0.5 metadata #2

Refresh tests/ro-crate with WRROC 0.5 metadata

Refresh tests/ro-crate with WRROC 0.5 metadata #2

Workflow file for this run

name: docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "mkdocs.yml"
- "README.md"
workflow_dispatch: {}
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
- name: Install Dependencies
run: uv sync --locked --all-extras
- name: Build Documentation
run: uv run mkdocs build
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v4
with:
path: site
deploy:
needs: build
runs-on: ubuntu-24.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4