Skip to content

Commit

Permalink
fix release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jkissel authored Nov 8, 2023
1 parent f55956f commit b4c918b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ jobs:
git tag ${{ env.NEW_VERSION }}
- name: Publish npm package
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
run: npm publish --verbose --access=public --tag=${{ env.RELEASE_TAG }}
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
npm publish --verbose --access=public --tag=${{ env.RELEASE_TAG }}
env:
NPM_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }}

Expand Down

0 comments on commit b4c918b

Please sign in to comment.