From c076759e231fab125bcf54148ae061a6887e7dd6 Mon Sep 17 00:00:00 2001 From: Trevor Manz Date: Wed, 21 Jun 2023 17:32:13 -0400 Subject: [PATCH] ci: fix permissions in release action --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ef44b3..7769701 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,8 @@ jobs: permissions: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write + # Necessary for changelogithub to publish releases automatically + contents: write if: startsWith(github.ref, 'refs/tags/') steps: - uses: actions/checkout@v3