From 8182a5f6690e4a6a092996299cf3ed5e0ebc2d92 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 13 Jul 2024 09:48:09 +0200 Subject: [PATCH] chore(ci): pass `NPM_TOKEN` to `npm publish` step --- .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 554f95b38..ce491ba7f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -51,7 +51,7 @@ jobs: - name: Publish to the npm registry run: npm publish corepack.tgz --provenance env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + NPM_TOKEN: ${{secrets.NPM_TOKEN}} - name: Add Corepack package archive to GitHub release run: gh release upload ${{ needs.release-please.outputs.release_tag }} corepack.tgz