Skip to content

Commit

Permalink
Update publish-npm.yml
Browse files Browse the repository at this point in the history
Remove --access=restricted from the call to npm publish, since the SDK has been released and no longer needs to be private in npm.
  • Loading branch information
pryhoda authored Dec 8, 2022
1 parent 7bf67d4 commit ef5cad6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -25,6 +25,6 @@ jobs:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm install --package-lock=false
- run: npm publish --access=restricted
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

0 comments on commit ef5cad6

Please sign in to comment.