From 2654bcd35411c1207c634261778017eab69d9752 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 7 Jul 2020 12:49:50 +0200 Subject: [PATCH] Explicitly set NPM registry URL Otherwise the action doesn't configure npm properly to authenticate and our publish actions will fail with 404 errors. --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b65ade9f..454ff8bd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,6 +10,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 + with: + # Needs to be explicitly specified for auth to work + registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm publish --access public env: