From 8548abfbad9819659ef4cf9cb68118a72d36537e Mon Sep 17 00:00:00 2001 From: Jimmy Wilson Date: Thu, 11 Dec 2025 16:14:46 -0800 Subject: [PATCH 1/3] chore: set the registry in the release workflow --- .github/workflows/release.yml | 1 + .npmrc | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 .npmrc diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cbd2659..7ed9c33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20.x + registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: yarn install --ignore-scripts diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 214c29d..0000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -registry=https://registry.npmjs.org/ From 7cd0a868a157ee06e7a989c340a1ff52e5ae42b5 Mon Sep 17 00:00:00 2001 From: Jimmy Wilson Date: Thu, 11 Dec 2025 16:19:47 -0800 Subject: [PATCH 2/3] third times the charm --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ed9c33..fb1acce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,9 @@ jobs: - name: Install dependencies run: yarn install --ignore-scripts + - name: Configure npm registry + run: npm config set registry https://registry.npmjs.org + - name: Create Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From d08ace53ce6b277ed4e760aa371235fdc38e5fe1 Mon Sep 17 00:00:00 2001 From: Jimmy Wilson Date: Thu, 11 Dec 2025 17:23:13 -0800 Subject: [PATCH 3/3] try using the package manifest --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c862e4a..b94ef1b 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,8 @@ "storybook": "^9.0.0 || ^10.0.0" }, "publishConfig": { - "access": "public" + "access": "public", + "registry": "https://registry.npmjs.org" }, "storybook": { "displayName": "Amplitude Storybook Addon",