Skip to content

Commit 16ed4d4

Browse files
fix: Remove GitHub packages registry override from canary workflow
All @jupiterone/* packages are published to npmjs.org, not GitHub packages. The previous configuration was causing npm to look for packages in the wrong registry, resulting in 404 errors for packages like @jupiterone/hierarchical-token-bucket.
1 parent 8c2f0b5 commit 16ed4d4

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/canary.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,8 @@ jobs:
9696
node-version: '20'
9797
registry-url: 'https://registry.npmjs.org'
9898

99-
- name: Configure npm for JupiterOne packages
99+
- name: Configure npm authentication
100100
run: |
101-
echo "@jupiterone:registry=https://npm.pkg.github.com" >> .npmrc
102-
echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" >> .npmrc
103101
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" >> .npmrc
104102
105103
- name: Install dependencies

0 commit comments

Comments
 (0)