From 0583532dd2f55ba210902053dd4606987bfcd99d Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Aug 2026 12:14:50 +0000 Subject: [PATCH] Auto-enable GitHub Pages in deploy workflow Add actions/configure-pages with enablement so the first deploy turns on Pages without a manual Settings toggle. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01XPEvmMbac2fCvKXpQcovj8 --- .github/workflows/deploy.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 36a6153..80fc97e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,6 +27,12 @@ jobs: with: node-version: 22 + # Enables GitHub Pages on first run so no manual Settings toggle is needed. + - name: Configure Pages + uses: actions/configure-pages@v5 + with: + enablement: true + - name: Install dependencies run: npm install --no-audit --no-fund