From 6a4264eeab4ab5d1bbe7dd288b32ba91058e5c30 Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Sat, 17 Jan 2026 22:04:23 +0200 Subject: [PATCH] Add contents write permission to release workflow Updated the release-all GitHub Actions workflow to include 'contents: write' permission, enabling the workflow to perform actions that require write access to repository contents. --- .github/workflows/release-all.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-all.yml b/.github/workflows/release-all.yml index 7e0fdef..c46dd44 100644 --- a/.github/workflows/release-all.yml +++ b/.github/workflows/release-all.yml @@ -8,6 +8,9 @@ on: required: true type: string +permissions: + contents: write + jobs: release-windows: uses: ./.github/workflows/build-windows.yml