Skip to content

Commit 42babf8

Browse files
committed
feat: add logging to GetAllGitTags
1 parent ce1b0c5 commit 42babf8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

utils/util.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
)
2020

2121
func GetAllGitTags() []*semver.Version {
22+
slog.Info("get all tags")
2223
var tagText = strings.TrimSpace(assert.Must1(RunOutput("git", "tag")))
2324
var tags = strings.Split(tagText, "\n")
2425
var versions = make([]*semver.Version, 0, len(tags))

0 commit comments

Comments
 (0)