Skip to content

fix capitalisation for internal node codegen (#131) #719

fix capitalisation for internal node codegen (#131)

fix capitalisation for internal node codegen (#131) #719

Workflow file for this run

name: docs-build-deploy
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["*"]
jobs:
build-docs:
runs-on: macos-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Build Docs
run: |
uv sync --all-extras
uv pip install -e .
cd docs
uv run quartodoc build
uv run quartodoc interlinks
- name: Quarto Render
run: |
uv run quarto render docs
# Only publish to GitHub Pages when a new version tag is pushed
- name: Publish to GitHub Pages
if: startsWith(github.ref, 'refs/tags/v')
run: |
cd docs
uv run quarto publish gh-pages --no-render --no-prompt --no-browser