From c631561f32513d47625f6b6292c538ef7b7604c0 Mon Sep 17 00:00:00 2001 From: rain-Brian Date: Thu, 4 Jun 2026 15:35:51 -0700 Subject: [PATCH] ci: deploy docs when overrides/ changes + add manual trigger The Deploy MkDocs site workflow only watched docs/**, mkdocs.yml, and 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 3cbd882..6cf42cb 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -6,8 +6,10 @@ on: - main paths: - 'docs/**' + - 'overrides/**' - 'mkdocs.yml' - 'requirements.txt' + workflow_dispatch: jobs: deploy: