Skip to content

Commit

Permalink
added access public
Browse files Browse the repository at this point in the history
  • Loading branch information
jenithainbaraj committed Jan 6, 2023
1 parent 85ff074 commit dc0faa6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dispatch-new-version-event.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: yarn install

- run: yarn build
- run: npm publish
- run: npm publish --access public
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"workspaces": [
"src/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
Expand Down
3 changes: 2 additions & 1 deletion src/webex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
},
"publishConfig": {
"tag": "latest",
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
Expand Down
3 changes: 2 additions & 1 deletion src/webexcalling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
},
"publishConfig": {
"tag": "latest",
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rollup -c",
Expand Down

0 comments on commit dc0faa6

Please sign in to comment.