Skip to content

Commit

Permalink
fix(ci): include both methods of configuring npm (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
prescottprue committed May 1, 2023
1 parent 55fe9d0 commit 51fd491
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Expand Up @@ -29,7 +29,9 @@ jobs:
cache: 'yarn'

- name: Configure package manager
run: yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }}
run: |
npm config set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }}
yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }}
- name: Install Dependencies
run: yarn install --immutable
Expand Down

0 comments on commit 51fd491

Please sign in to comment.