Skip to content

Commit

Permalink
chore(release-it): add v-prefix for git tag
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed Oct 20, 2020
1 parent b72fa08 commit 89e991e
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
Expand Up @@ -3,12 +3,13 @@
"before:init": ["npm run format", "npm run lint"],
"after:bump": [
"npm run build:binary",
"echo ${version} > .version && git add .version"
"echo v${version} > .version && git add .version"
]
},
"git": {
"commitMessage": "chore(release): v${version} :tada:",
"tagAnnotation": "Release v${version}"
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
Expand Down

0 comments on commit 89e991e

Please sign in to comment.