Skip to content

Commit

Permalink
fix: npm publish
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed May 7, 2024
1 parent 56e8ba8 commit 46e8f8a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ jobs:
- name: Install Dependencies
run: npm install
- name: Publish Package
run: npm publish --tag "${{ steps.tag.outputs.tag_name }}"
# run: npm publish --tag "${{ steps.tag.outputs.tag_name }}"
run: |
set -e
npm version "${{ steps.tag.outputs.tag_name }}" --no-git-tag-version
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 46e8f8a

Please sign in to comment.