From 6a3964562932c90fa17d648749e79bf5a2af62c0 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Feb 2026 22:48:01 +0000 Subject: [PATCH] fix: add contents:write permission to Build Windows EXE workflow softprops/action-gh-release requires write access to repository contents to create releases. Without this explicit permission, GITHUB_TOKEN is read-only by default and the release step fails with HTTP 403 "Resource not accessible by integration". https://claude.ai/code/session_01NBC9GwzXg2yP1k4hjs5q16 --- .github/workflows/build_windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index aed78f5..7efd475 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -8,6 +8,8 @@ on: jobs: build: runs-on: windows-latest + permissions: + contents: write steps: - name: Checkout