From a08e6c4e05411ad9d13ea85921e2113f29ea3f5a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Jul 2026 01:12:27 +0000 Subject: [PATCH 1/2] Initial plan From 3efd2386d731bbb9a8bfe9fd1433ad98e878837f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 5 Jul 2026 01:22:48 +0000 Subject: [PATCH 2/2] Add explicit GitHub Pages workflow to fix deploy job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dynamic `pages-build-deployment` workflow's deploy job was failing with "Deployment failed, try again later." — a GitHub Pages backend rejection unrelated to the pushed content (plain markdown text). Replace the opaque auto-generated workflow with an explicit custom one that: - Declares `id-token: write` at the workflow level (required by actions/deploy-pages for OIDC authentication) - Uses `actions/configure-pages` to properly set up the Pages environment, including custom-domain handling - Pins all action versions explicitly for reproducibility - Adds `workflow_dispatch` so the deployment can be re-triggered manually without a code push --- .github/workflows/pages.yml | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml new file mode 100644 index 0000000..8470f55 --- /dev/null +++ b/.github/workflows/pages.yml @@ -0,0 +1,45 @@ +name: Deploy Jekyll site to Pages + +on: + push: + branches: ["master"] + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Pages + uses: actions/configure-pages@v5 + + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4