Skip to content

Commit

Permalink
ci(publish): update changelogs (#418)
Browse files Browse the repository at this point in the history
In actions of npm-publish.yml , publish-npm was not running correctly (completely)

ERROR MSG : You cannot publish over the previously published versions: 1.5.2 

FIX (at least I think it is) : added line npm version patch, which will update the version and then publish
  • Loading branch information
bit-wiz authored Nov 15, 2023
1 parent 4b45228 commit 3a69bdd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run build
- run: npm run version patch
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit 3a69bdd

Please sign in to comment.