fix: git tag need message

main
sudo pacman -Syu 2022-09-04 23:34:18 +07:00
parent 74bbc8c933
commit 0836b22ae2
No known key found for this signature in database
GPG Key ID: D6CB5C6C567C47B0
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ func (a *action) doGit(finalOutput, version string) error {
a.log("Git commit output:\n%s", cmdOutput)
if a.flags.autoGitTag {
cmdOutput, err = exec.Command("git", "tag", version).CombinedOutput()
cmdOutput, err = exec.Command("git", "tag", version, "-m", commitMsg).CombinedOutput()
if err != nil {
return err
}