From 22b640814237e1c63ba02118b6aa1a9b263f00b0 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Mon, 8 Dec 2025 11:09:30 -0500 Subject: [PATCH] ci: Configure npm registry URL and update npm to the latest version in the publish workflow. --- .github/workflows/publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 036c656..0d0d161 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,6 +19,10 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '20' + registry-url: 'https://registry.npmjs.org' + + - name: Update npm + run: npm install -g npm@latest - run: npm ci - run: npm publish --provenance --access public