From e317a3594ac00827047ae7af206556a2cc045315 Mon Sep 17 00:00:00 2001 From: "Dr. Stefan Schimanski" Date: Wed, 10 Aug 2022 22:54:08 +0200 Subject: [PATCH] goreleaser: add write permissions to GITHUB_TOKEN Our token is restricted. So we have to ask for content write. --- .github/workflows/goreleaser.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 2a5a7a21508..a212de551d6 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -8,6 +8,10 @@ on: - 'release-*' tags: - 'v*' + +permissions: + contents: write + jobs: goreleaser: runs-on: ubuntu-latest