Skip to content

Commit

Permalink
chore: fix github actions not adding tgz
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey committed Sep 21, 2023
1 parent 188f73a commit 3f9d20a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ jobs:
toTag: ${{ needs.bump_version.outputs.previous_tag }}
writeToFile: false

- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Create Github release
uses: ncipollo/[email protected]
with:
Expand All @@ -117,8 +122,3 @@ jobs:
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}
artifacts: '*.tgz'

- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 3f9d20a

Please sign in to comment.