From fb910299b645681474ff88441c4985d722f2163a Mon Sep 17 00:00:00 2001 From: rain-Brian Date: Thu, 4 Jun 2026 15:40:46 -0700 Subject: [PATCH] ci: deploy docs when overrides/ changes + add manual trigger The Deploy MkDocs site workflow only watched docs/**, mkdocs.yml, and docs-requirements.txt. The theme override (overrides/main.html) holds the JSON-LD, Open Graph, and social-card meta, so overrides-only SEO changes merged to main without triggering a deploy and never went live. Add overrides/** to the path filter, plus a workflow_dispatch trigger for manual redeploys of stranded changes. --- .github/workflows/deploy-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 285c92c..ec308d6 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -6,8 +6,10 @@ on: - main paths: - 'docs/**' + - 'overrides/**' - 'mkdocs.yml' - 'docs-requirements.txt' + workflow_dispatch: jobs: deploy: