From 215eba2fba588d4553588eadecbc7043dc7927cc Mon Sep 17 00:00:00 2001 From: Ryan Bas Date: Tue, 12 May 2026 14:10:02 -0600 Subject: [PATCH] fix(docs): widen workflow paths filter to trigger deploy with base-path fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The elm-pages base path patch (baa02c1) fixed route pre-rendering but never deployed because the docs workflow only triggers on apps/docs/** changes. The fix modified patches/, package.json, and the workflow file itself — none of which matched the filter. - Add .github/workflows/docs.yml and patches/elm-pages* to paths filter - Add VS Code Extension link to Getting Started page (triggers deploy) Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/docs.yml | 2 ++ apps/docs/content/docs/getting-started.md | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0295202..91981fe 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -5,6 +5,8 @@ on: branches: [main] paths: - 'apps/docs/**' + - '.github/workflows/docs.yml' + - 'patches/elm-pages*' permissions: contents: read diff --git a/apps/docs/content/docs/getting-started.md b/apps/docs/content/docs/getting-started.md index 7305130..9f5aead 100644 --- a/apps/docs/content/docs/getting-started.md +++ b/apps/docs/content/docs/getting-started.md @@ -42,3 +42,4 @@ npm install @wolfcola/devtools-bridge - Read the [Tree-Shaking Guide](/docs/tree-shaking) - Explore the [Architecture](/architecture) - Learn about the [DevTools Extension](/docs/devtools-extension) +- Check out the [VS Code Extension](/docs/vscode-extension)