Skip to content
This repository was archived by the owner on Mar 3, 2025. It is now read-only.

Commit 7489cc8

Browse files
authored
Merge pull request #11 from devrev/feat/publish-npm-registry
fix: publish to public npm registry
2 parents e2ece07 + 67f6043 commit 7489cc8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@ jobs:
1717
- uses: actions/setup-node@v3
1818
with:
1919
node-version: 18.17
20-
registry-url: https://npm.pkg.github.com/
20+
registry-url: https://registry.npmjs.org/
2121
scope: '@devrev'
2222

2323
- run: npm install -g yarn
2424
- name: publish package
2525
env:
26-
NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGE_PUBLISH_TOKEN }}
26+
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_NPM_TOKEN }}
2727
run: |
2828
git submodule init
2929
git submodule update
3030
cd packages/duckdb-wasm
31-
echo "//npm.pkg.github.com/:_authToken=${{secrets.NPM_PACKAGE_PUBLISH_TOKEN}}" >> .npmrc
3231
npm publish --access public

0 commit comments

Comments
 (0)