From 2b197aa5430343ae157b18563d10f46f1163348b Mon Sep 17 00:00:00 2001 From: ppettitau Date: Tue, 16 Jun 2026 14:27:18 +1000 Subject: [PATCH] fix(ci): grant contents write permission to deploy job The GitHub Pages deploy job failed with a 403 because the default GITHUB_TOKEN is read-only. Grant `contents: write` so the action can push to the gh-pages branch. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/ci-workflow.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 924e23f3..b885cb4a 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -67,6 +67,9 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' runs-on: ubuntu-latest + permissions: + contents: write + strategy: matrix: node-version: [24]