Skip to content

Commit b75fc44

Browse files
committed
feat(x/releaser): tag with message
1 parent c25a9c4 commit b75fc44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

x/release/command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ func getLatestVersion(modName string) (string, error) {
261261
}
262262

263263
func gitTag(tag string) error {
264-
cmd := exec.Command("git", "tag", tag)
264+
cmd := exec.Command("git", "tag", tag, "-m", tag)
265265
if out, err := cmd.CombinedOutput(); err != nil {
266266
return fmt.Errorf("git tag (%s): %s", err, string(out))
267267
}

0 commit comments

Comments
 (0)