From 1de1e6c7776ea1f5be322861138d9954b833ff1a Mon Sep 17 00:00:00 2001 From: Kanitkorn Sujautra Date: Sun, 7 Jun 2020 00:51:49 +0900 Subject: [PATCH] Make NPM_TOKEN consistent with GITHUB_TOKEN It was `npm_token` before, but for GitHub it's `GITHUB_TOKEN`. This makes them be the same, all-cap case. --- ci/npm-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/npm-publish.yml b/ci/npm-publish.yml index 861e372..aa47c4e 100644 --- a/ci/npm-publish.yml +++ b/ci/npm-publish.yml @@ -30,7 +30,7 @@ jobs: - run: npm ci - run: npm publish env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} publish-gpr: needs: build