From 7991a0546a7c40afc445006daeb26bda2214a807 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Dec 2025 08:09:48 +0000 Subject: [PATCH 1/2] Initial plan From cce7ec5c90e12bea92e6bd0a842987137cdb2471 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 11 Dec 2025 08:13:17 +0000 Subject: [PATCH 2/2] fix: remove incorrect environment config from build job The build job was referencing steps.deployment.outputs.page_url which doesn't exist in the build job context. This step only exists in the deploy job. Removing the environment configuration from the build job fixes the deployment failure. Co-authored-by: openscript <1105080+openscript@users.noreply.github.com> --- .github/workflows/deploy.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index a205c571..6cd841c9 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -21,9 +21,6 @@ env: jobs: build: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - name: Checkout