-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (27 loc) · 1.01 KB
/
docs.yml
File metadata and controls
31 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# =============================================================================
# .github/workflows/docs.yml — Manual Documentation Rebuild
# =============================================================================
# Use workflow_dispatch to manually rebuild docs without a release.
# Normal doc deployment happens automatically via release.yml; both delegate
# the actual build to the reusable quarto-build.yml workflow.
# Set deploy=false for a render-only dry run (e.g. to verify doc changes on
# a branch without touching the production gh-pages site).
# =============================================================================
name: Documentation
on:
workflow_dispatch:
inputs:
deploy:
description: "Publish the rendered site to gh-pages"
type: boolean
default: true
permissions: read-all
jobs:
docs:
name: Documentation
uses: ./.github/workflows/quarto-build.yml
with:
deploy: ${{ inputs.deploy }}
permissions:
contents: write
secrets: inherit