From b6d2a5a7cd8db240523c49ab735ef677ee9dddee Mon Sep 17 00:00:00 2001 From: Daniel Cousens <413395+dcousens@users.noreply.github.com> Date: Tue, 13 Sep 2022 16:21:26 +1000 Subject: [PATCH] add missing registry for npm publish (#283) --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e123648..7a72640 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,9 @@ jobs: with: fetch-depth: 0 persist-credentials: false - + - uses: actions/setup-node@main + with: + registry-url: 'https://registry.npmjs.org' - run: npm publish env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}