From 0c75cacf1ad1dc674864a00f2092798ca0dcd71c Mon Sep 17 00:00:00 2001 From: RAprogramm Date: Sun, 19 Oct 2025 06:56:48 +0700 Subject: [PATCH] #14 fix: add contents write permission for GitHub Release - Add permissions: contents: write to release workflow - Fixes 403 error when creating GitHub Release - crates.io publish continues to work correctly This resolves the permission error that prevented automatic GitHub Release creation while crates.io publishing succeeded --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bb9d67..b32c4f2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,9 @@ on: tags: - 'v*.*.*' +permissions: + contents: write + env: CARGO_TERM_COLOR: always