From eae8b2182a65df49eb04ed63d6c45043b454905c Mon Sep 17 00:00:00 2001 From: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com> Date: Tue, 22 Oct 2024 05:52:10 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=B1=20fix=20GoReleaser=20by=20adding?= =?UTF-8?q?=20permission=20to=20write=20content=20(#4226)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix GoReleaser by adding permission to write content We found an issue to publish the assets when we are trying to publish the release 4.3.0. Therefore, we are adding the content permission to verify if the issue can be solved within --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6572ed0a7b9..31d9379b4fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,9 +4,14 @@ on: tags: - '*' +permissions: + contents: write + jobs: goreleaser: runs-on: ubuntu-latest + + steps: - name: Checkout uses: actions/checkout@v4