Skip to content

Commit ef5cad6

Browse files
authored
Update publish-npm.yml
Remove --access=restricted from the call to npm publish, since the SDK has been released and no longer needs to be private in npm.
1 parent 7bf67d4 commit ef5cad6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
@@ -25,6 +25,6 @@ jobs:
2525
node-version: 16
2626
registry-url: https://registry.npmjs.org/
2727
- run: npm install --package-lock=false
28-
- run: npm publish --access=restricted
28+
- run: npm publish
2929
env:
3030
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 commit comments

Comments
 (0)