diff --git a/docs/git.md b/docs/git.md index 86b7aab1..d57d6369 100644 --- a/docs/git.md +++ b/docs/git.md @@ -180,10 +180,12 @@ In case you need even more customizations, here is some inspiration: ```json { "git": { + "commitMessage": "chore(release): cut the v${version} release", "push": false }, "hooks": { - "after:git:release": "git push origin HEAD" + "after:bump": ["npm run build"], + "after:release": "git push origin HEAD" } } ```