From c4d247a8dfcae0dfb2670606dcac2fc0019dd80d Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 5 Dec 2025 03:09:09 +0900 Subject: [PATCH] fix: use npm config instead of registry-url for OIDC tokenless publishing --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4f833ed..67cd457 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: "20" - registry-url: "https://registry.npmjs.org" + + - name: Configure npm registry + run: npm config set registry https://registry.npmjs.org - name: Install dependencies run: bun install --ignore-scripts