From 219af0cb74955bbbd9b0d22cb7ce5426ef1d66cd Mon Sep 17 00:00:00 2001 From: Scott Rigby Date: Sat, 8 Aug 2020 21:56:15 -0400 Subject: [PATCH] Use built-in GITHUB_TOKEN now that GH Actions bug is fixed. See https://github.com/helm/chart-releaser-action/pull/26 Signed-off-by: Scott Rigby --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a3af01e4..4fb649d9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,4 +35,4 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.0.0-rc.2 env: - CR_TOKEN: "${{ secrets.CR_TOKEN }}" + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"