chore: log version verbose

main
hau 2020-12-17 17:53:38 +07:00
parent bb7ef0715f
commit d9d61fce7a
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,7 @@ func (a *action) getChangelogPath() (string, string, string) {
changelogName := filename + "." + filetype
changelogPath := filepath.Join(path, changelogName)
a.log("changelog path %s", changelogPath)
return changelogPath, filename, filetype
@ -232,6 +233,8 @@ func (a *action) getVersion() (string, error) {
return "", fmt.Errorf("invalid semver %s", version)
}
a.log("version %s", version)
return version, nil
}