From c105a85a5a9829734e28ed14769a45906fc24f8c Mon Sep 17 00:00:00 2001 From: Max Leske Date: Fri, 9 Feb 2024 18:02:19 +0100 Subject: [PATCH] fix: publishing packages to GitHub requires write permissions (#251) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79429737..93ded89a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,7 @@ jobs: permissions: # https://goreleaser.com/ci/actions/#token-permissions contents: write + packages: write steps: - @@ -50,4 +51,3 @@ jobs: env: SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -