From f2efa2f0fc927ad58f40155e7090d3d96dc39bfb Mon Sep 17 00:00:00 2001 From: DEVARAJ K Date: Fri, 28 Aug 2026 21:20:09 +0000 Subject: [PATCH] fix(ci): let the Pages workflow enable Pages itself First deploy failed with 'Get Pages site failed / Not Found' because the repository doesn't have Pages enabled yet. configure-pages with enablement: true creates the Pages site on first run, removing the manual Settings -> Pages step. --- .github/workflows/pages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 65f9cf6..2db4bf9 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -26,6 +26,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/configure-pages@v5 + with: + # Create/enable the Pages site on first run, so no manual + # Settings -> Pages step is needed. + enablement: true - uses: actions/upload-pages-artifact@v3 with: path: site