Skip to content

Commit a98df66

Browse files
authored
fix: make public access (#103)
1 parent e818304 commit a98df66

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,25 @@ jobs:
2222
- run: |
2323
cd ./dist/meerkat-dbm
2424
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
25-
npm publish
25+
npm publish --access public
2626
continue-on-error: true
2727
2828
- run: |
2929
cd ./dist/meerkat-core
3030
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
31-
npm publish
31+
npm publish --access public
3232
continue-on-error: true
3333
3434
- run: |
3535
cd ./dist/meerkat-node
3636
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
37-
npm publish
37+
npm publish --access public
3838
continue-on-error: true
3939
4040
- run: |
4141
cd ./dist/meerkat-browser
4242
echo "//registry.npmjs.org/:_authToken=${{secrets.NPMJS_NPM_TOKEN}}" >> .npmrc
43-
npm publish
43+
npm publish --access public
4444
continue-on-error: true
4545
env:
4646
NODE_AUTH_TOKEN: ${{secrets.NPMJS_NPM_TOKEN}}

meerkat-dbm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devrev/meerkat-dbm",
3-
"version": "0.1.22",
3+
"version": "0.1.23",
44
"dependencies": {
55
"tslib": "^2.3.0",
66
"@devrev/duckdb-wasm": "1.14.3",

0 commit comments

Comments
 (0)