From a22e569c178368cf43f6e77c852fcd07634d1e99 Mon Sep 17 00:00:00 2001 From: Cristian Arrieta Date: Wed, 7 Jan 2026 12:30:48 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20[PB-1278]=20Remove=20registry-ur?= =?UTF-8?q?l=20to=20prevent=20auto=20NODE=5FAUTH=5FTOKEN=20(#23)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove registry-url from setup-node to prevent automatic NODE_AUTH_TOKEN creation - Bump version to 0.2.11 for deployment test Root cause: setup-node with registry-url automatically creates NODE_AUTH_TOKEN environment variable, which blocks OIDC authentication even when not explicitly set. This is our final OIDC attempt. If this fails, we'll use traditional npm token. --- .github/workflows/deploy.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 428aa02..cab6c91 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -60,7 +60,6 @@ jobs: with: node-version: 22 cache: 'pnpm' - registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/package.json b/package.json index 1e37a57..aee87ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ubidots/react-html-canvas", - "version": "0.2.10", + "version": "0.2.11", "description": "React library to interact with Ubidots Dashboards from HTML Canvas widgets (Provider + hooks + actions)", "license": "MIT", "author": "Ubidots",