From 51d218a48467c0c0649dd5089a3ba1a18e29c906 Mon Sep 17 00:00:00 2001 From: Karan Sharma Date: Fri, 19 Mar 2021 15:56:34 +0530 Subject: [PATCH] fix: rename Github Token secret variable Since `GITHUB_TOKEN` is automatically injected in build pipelines, we don't need to generate and add our custom token here. --- .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 579fc40..3bf7d35 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,4 +35,4 @@ jobs: version: latest args: --parallelism 1 --rm-dist --skip-validate env: - GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}