From 118a37e761306c749fe1c4661e73fa317973230d Mon Sep 17 00:00:00 2001 From: Le-King-Fu Date: Tue, 10 Feb 2026 23:27:03 +0000 Subject: [PATCH] fix: add contents write permission for release creation GITHUB_TOKEN needs explicit write permission to create releases. Without it, tauri-action fails with "Resource not accessible by integration". Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b470797..2133948 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,9 @@ on: tags: - 'v*' +permissions: + contents: write + jobs: build: strategy: