From 6867a4aacc0ff1d02cbf3e331b2c51705da98f05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Gomez?= Date: Mon, 14 Aug 2023 16:32:02 +0200 Subject: [PATCH] Use secrets.GITHUB_TOKEN secret in release action --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e49b41c5..31008c8e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ jobs: with: release_branch: master env: - GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} goreleaser: runs-on: ubuntu-latest @@ -57,5 +57,5 @@ jobs: version: latest args: release --rm-dist env: - GITHUB_TOKEN: ${{ secrets.GH_RELEASE_PAT }} - GORELEASER_CURRENT_TAG: ${{ needs.tag.outputs.version }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GORELEASER_CURRENT_TAG: ${{ needs.tag.outputs.version }}