From 41c95a9122a2d12a3d19bf6198c6a9cc70a3e575 Mon Sep 17 00:00:00 2001 From: syui Date: Sat, 14 Jun 2025 17:44:14 +0900 Subject: [PATCH] fix: add write permissions to gh-pages workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add contents: write, pages: write, and id-token: write permissions to fix 403 error when pushing to gh-pages branch. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/gh-pages-fast.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/gh-pages-fast.yml b/.github/workflows/gh-pages-fast.yml index 4ea519c..078d518 100644 --- a/.github/workflows/gh-pages-fast.yml +++ b/.github/workflows/gh-pages-fast.yml @@ -12,6 +12,10 @@ on: jobs: build-deploy: runs-on: ubuntu-latest + permissions: + contents: write + pages: write + id-token: write steps: - uses: actions/checkout@v4