Skip to content

Add NGFF Labels

Add NGFF Labels #174

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
enable-cache: true
- run: uv sync --group doc
- run: uv run zensical build --clean
- uses: actions/upload-pages-artifact@v4
with:
path: site
deploy:
if: github.ref == 'refs/heads/main'
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/configure-pages@v5
- uses: actions/deploy-pages@v4
id: deployment