From 07059e7075d36c7ac42c9be12191626c23c1fd64 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 14:13:49 +0000 Subject: [PATCH 1/3] Initial plan From fb2d76d0f4b150c2ee9bc2a4f3c5f3bc7abb0e15 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 14:16:47 +0000 Subject: [PATCH 2/3] ci: add GitHub Pages deployment job to workflow Co-authored-by: LauraCD2 <86331450+LauraCD2@users.noreply.github.com> --- .github/workflows/actions.yaml | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index 2ac3fc07..df16166c 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -8,6 +8,13 @@ on: branches: - main +permissions: + contents: read + +concurrency: + group: pages + cancel-in-progress: false + jobs: build: runs-on: ubuntu-latest @@ -39,3 +46,34 @@ jobs: cache: npm - run: npm ci - run: npm run check + + deploy: + if: github.event_name == 'push' + needs: + - build + - check + runs-on: ubuntu-latest + permissions: + pages: write + id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - uses: actions/checkout@v4 + - name: Use Node.js 22 + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: npm + - run: npm ci + - run: npm run build + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./dist + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 From 4a7a2c591b6766a036fe08853fdf7d011b307003 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 14:18:16 +0000 Subject: [PATCH 3/3] ci: refine pages workflow concurrency group Co-authored-by: LauraCD2 <86331450+LauraCD2@users.noreply.github.com> --- .github/workflows/actions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml index df16166c..512c64b7 100644 --- a/.github/workflows/actions.yaml +++ b/.github/workflows/actions.yaml @@ -12,7 +12,7 @@ permissions: contents: read concurrency: - group: pages + group: ${{ github.workflow }}-pages cancel-in-progress: false jobs: