From 0bd3f467141ab750edff60888be571b8e7852c79 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 15 Nov 2025 22:05:52 +0000 Subject: [PATCH] fix(ci): Update GitHub Pages workflow to trigger on master branch The workflow was configured to trigger on 'main' branch, but the repository's default branch is 'master'. This prevented the workflow from running automatically when site/ content was updated. This fix ensures the gh-pages branch will be updated whenever changes are pushed to site/ on the master branch. --- .github/workflows/github-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index c5cebeab..fe4ab8c8 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -3,7 +3,7 @@ name: Deploy GitHub Pages on: push: branches: - - main + - master paths: - 'site/**' - '.github/workflows/github-pages.yml'