From 49d918c037381c76fd8c670c485cb4412c892a43 Mon Sep 17 00:00:00 2001 From: m1ngsama Date: Thu, 20 Nov 2025 11:50:43 +0800 Subject: [PATCH] fix: Add contents write permission for release job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions requires explicit permissions to create releases. Added permissions.contents: write to the release job. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52efa8b..8bd9c06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,6 +58,8 @@ jobs: release: needs: build runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Checkout code