From 45caf7205095311486c352118e130b65dde893cd Mon Sep 17 00:00:00 2001 From: Kfir Toledo Date: Mon, 11 Mar 2024 13:07:18 +0200 Subject: [PATCH] .github/workflows: Add write permission to release workflow (#386) Update the permission to write packages and content for the Release GitHub action. Signed-off-by: Kfir Toledo --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1a37b2c..5ac563d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,9 @@ on: jobs: release: runs-on: ubuntu-latest + permissions: + contents: write + packages: write steps: - name: checkout uses: actions/checkout@v4