Skip to content

Commit 6df6656

Browse files
committedMay 8, 2024·
Change git config example in docs (closes #1091)
1 parent 9d75efe commit 6df6656

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎docs/git.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,12 @@ In case you need even more customizations, here is some inspiration:
180180
```json
181181
{
182182
"git": {
183+
"commitMessage": "chore(release): cut the v${version} release",
183184
"push": false
184185
},
185186
"hooks": {
186-
"after:git:release": "git push origin HEAD"
187+
"after:bump": ["npm run build"],
188+
"after:release": "git push origin HEAD"
187189
}
188190
}
189191
```

0 commit comments

Comments
 (0)
Please sign in to comment.