From 796ab7bf417a5ce17ea1cdea397757dab27e8a3d Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Mon, 28 Oct 2019 04:09:40 -0400 Subject: [PATCH] Fix deploying to NPM This changes the NPM registry URL to point to the actual NPM registry instead of the GitHub package registry. --- .github/workflows/package-deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/package-deploy.yml b/.github/workflows/package-deploy.yml index 7a42796f..1e40269e 100644 --- a/.github/workflows/package-deploy.yml +++ b/.github/workflows/package-deploy.yml @@ -46,8 +46,7 @@ jobs: uses: actions/setup-node@v1 with: node-version: 8 - registry-url: https://npm.pkg.github.com/ - scope: '@select2' + registry-url: 'https://registry.npmjs.org' - name: npm install run: npm install - name: Run linting, tests, minify