From 1876502a95b0717d4d4ab832152d472481352f61 Mon Sep 17 00:00:00 2001 From: Johnny Otsuka Date: Mon, 23 Oct 2023 14:06:11 -0500 Subject: [PATCH] Switching to secrets.GITHUB_TOKEN vs secrets.ACTIONS_TOKEN This is provided by github, not sure why we need a different one. --- .github/workflows/Publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml index 3a1ad4ec..7a0bc650 100644 --- a/.github/workflows/Publish.yml +++ b/.github/workflows/Publish.yml @@ -23,5 +23,5 @@ jobs: - run: npm run build - run: npx semantic-release env: - GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}