fix: add write permissions to gh-pages workflow

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 <noreply@anthropic.com>
This commit is contained in:
2025-06-14 17:44:14 +09:00
parent e1eb04620e
commit 41c95a9122

View File

@@ -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