From 7a953ef25764182a3711ce6f2937dda78fc90990 Mon Sep 17 00:00:00 2001 From: Atila Fassina Date: Mon, 10 Feb 2025 20:00:01 +0100 Subject: [PATCH] chore: add release token to node as well --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6dbd1da57..7bc14b918 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,8 +23,8 @@ jobs: - name: Use Node.js from nvmrc uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' - registry-url: 'https://registry.npmjs.org' + node-version-file: ".nvmrc" + registry-url: "https://registry.npmjs.org" - name: Install Dependencies run: pnpm i --frozen-lockfile @@ -39,3 +39,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}