Skip to content

Commit

Permalink
Fix my oops in the release-it config
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Mar 16, 2022
1 parent 470d8cd commit 6cdcd77
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"git": {
"commitMessage": "v${version}",
"commitMessage": "Release v${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
"release": true,
"releaseName": "v${version}"
},
"hooks": {
"after:git:release": "git tag -d v1 && git push origin :refs/tags/v1 && git tag v1 && git push origin v1"
Expand Down

0 comments on commit 6cdcd77

Please sign in to comment.