Skip to content

Commit

Permalink
change the registry-url in the ci workflow
Browse files Browse the repository at this point in the history
attempt to fix the current ci error. the error only appeared on this branch,
so I'm assuming it's related to the release-it upgrade.

ci error: https://github.com/scientist-softserv/webstore-component-library/actions/runs/9180400953/job/25245089130?pr=231
```
npm notice
npm ERR! code ENEEDAUTH
npm ERR! need auth This command requires you to be logged in to https://registry.npmjs.org/
npm ERR! need auth You need to authorize this machine using `npm adduser`
npm ERR! A complete log of this run can be found in: /home/runner/.npm/_logs/2024-05-21T19_44_34_719Z-debug-0.log
Error: Process completed with exit code 1.
```
  • Loading branch information
alishaevn committed May 21, 2024
1 parent 04dbff7 commit 812a042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
registry-url: 'https://npm.pkg.github.com'
registry-url: 'https://registry.npmjs.org'
# Defaults to the user or organization that owns the workflow file
scope: '@octocat'
node-version-file: package.json
Expand Down

0 comments on commit 812a042

Please sign in to comment.