From 5e041111bf86a094227a20b8ae851f96b06207e7 Mon Sep 17 00:00:00 2001 From: Tom Meadows Date: Fri, 17 May 2024 17:58:25 +0100 Subject: [PATCH] Fix releaser permissions (#248) * think the softprops/action-gh-release needs write permissions --------- Signed-off-by: chaosinthecrd --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e12845b2..423c8b28 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,6 +60,8 @@ jobs: needs: [fmt, sast, unit-test] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') runs-on: ubuntu-latest + permissions: + contents: write # This is required for the action to work correctly steps: - name: Checkout uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5