From 95d0684a840488d1768cd00a7cfafc6e068d16b5 Mon Sep 17 00:00:00 2001 From: rain-Brian Date: Thu, 4 Jun 2026 15:37:59 -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 fff22529e..e06042667 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: