From 5d3f8431646412aed31efe7493b6f509b5ddad54 Mon Sep 17 00:00:00 2001 From: ntkathole Date: Sat, 12 Jul 2025 21:50:57 +0530 Subject: [PATCH] fix: Fix NPM authentication Signed-off-by: ntkathole --- .github/workflows/publish_web_ui.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_web_ui.yml b/.github/workflows/publish_web_ui.yml index 2eb9c2fce65..8ce629f31da 100644 --- a/.github/workflows/publish_web_ui.yml +++ b/.github/workflows/publish_web_ui.yml @@ -109,6 +109,7 @@ jobs: uses: actions/setup-node@v3 with: node-version-file: './ui/.nvmrc' + registry-url: 'https://registry.npmjs.org' - name: Bump file versions (temporarily for Web UI publish) if: github.event.inputs.custom_version != '' env: @@ -138,4 +139,4 @@ jobs: run: npm publish env: # This publish is working using an NPM automation token to bypass 2FA - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file