2 Commits

Author SHA1 Message Date
aca2b367b1 disable: move gh-pages workflow to disabled directory
GitHub Pages is not being used, only Cloudflare Pages is active.
Moved workflow to disabled/ to prevent unnecessary runs.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-14 17:45:47 +09:00
41c95a9122 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>
2025-06-14 17:44:14 +09:00

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