From 7e26f93c533f9f8c36a753ec512ad6e4dc928da8 Mon Sep 17 00:00:00 2001 From: Yogesh Chaudhary Date: Wed, 29 Apr 2026 10:33:49 +0530 Subject: [PATCH] chore: remove dead registry-url and use npm i in publish workflow --- .github/workflows/publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0fd7b583..42cfd4c9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -97,10 +97,9 @@ jobs: uses: ./.github/actions/setup-node-npm with: node-version: ${{ env.NODE_VERSION }} - registry-url: 'https://registry.npmjs.org' - name: Install dependencies - run: npm ci + run: npm i - name: Publish release to NPM run: npm publish --provenance --tag ${{ needs.configure.outputs.vtag }} ${{ needs.configure.outputs.dry-run }}