From 9d31d68f1486a86b7dca6eb48cb4746482b216e8 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Mon, 16 Feb 2026 16:29:55 +0400 Subject: [PATCH] chore: fix permissions --- .github/workflows/release.yml | 6 ++++++ .github/workflows/rolling-release.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9472918..346a2d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,12 @@ on: tags: - "v*" +permissions: + contents: write + security-events: write + packages: read + actions: read + env: TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }} diff --git a/.github/workflows/rolling-release.yml b/.github/workflows/rolling-release.yml index 88381fd..3063004 100644 --- a/.github/workflows/rolling-release.yml +++ b/.github/workflows/rolling-release.yml @@ -5,6 +5,12 @@ on: branches: - main +permissions: + contents: write + security-events: write + packages: read + actions: read + env: TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}