From 2e8fd4444f610f0502cb02d4dd5fcc99a77ed38c Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 8 Aug 2026 22:09:01 +0000 Subject: [PATCH] Auto-enable GitHub Pages from the deploy workflow The deploy run on main failed at configure-pages because the repository does not have Pages enabled yet. Setting enablement: true lets the workflow create the Pages site (build type: workflow) on first run instead of requiring a manual Settings -> Pages step. Co-authored-by: ideaclaw --- .github/workflows/deploy-pages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index a314462..8be313b 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -40,6 +40,8 @@ jobs: - name: Configure GitHub Pages uses: actions/configure-pages@v5 + with: + enablement: true - name: Upload Pages artifact uses: actions/upload-pages-artifact@v4