Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Deploys the mdBook docs site to GitHub Pages.
#
# DELIBERATELY manual-only (workflow_dispatch) so documentation deployments
# remain explicit. Add a `push: branches: [main]` trigger if continuous
# deployment becomes preferable.
# Deploys on every push to main (docs stay in sync with the default branch)
# and still allows manual runs via workflow_dispatch.
#
# Prerequisite: repository Settings -> Pages -> Source = "GitHub Actions".
name: Deploy docs

on:
push:
branches: [main]
workflow_dispatch:

permissions:
Expand Down
Loading