From 000823457d1bb3948f8b08e891f8e8b7a941adf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 04:42:34 +0100 Subject: [PATCH] Fix release workflow permissions for creating releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added 'contents: write' permission to allow GITHUB_TOKEN to create releases. This fixes the 403 error when the workflow tries to create a GitHub release. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc7cdf2..12c1126 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,9 @@ on: tags: - 'v*.*.*' +permissions: + contents: write + env: CARGO_TERM_COLOR: always RUST_BACKTRACE: 1