Skip to content

Commit

Permalink
Merge pull request #109 from moorereason/release-tagname
Browse files Browse the repository at this point in the history
Use release tag name instead of name in log messages
  • Loading branch information
inferno-chromium committed Dec 24, 2020
2 parents a239820 + 88d5218 commit 329a4cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions checks/signed_releases.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func SignedReleases(c checker.Checker) checker.CheckResult {
if len(assets) == 0 {
continue
}
c.Logf("release found: %s", r.GetName())
c.Logf("release found: %s", r.GetTagName())
totalReleases++
signed := false
for _, asset := range assets {
Expand All @@ -62,7 +62,7 @@ func SignedReleases(c checker.Checker) checker.CheckResult {
}
}
if !signed {
c.Logf("!! release %s has no signed artifacts", r.GetName())
c.Logf("!! release %s has no signed artifacts", r.GetTagName())
}
if totalReleases > releaseLookBack {
break
Expand Down

0 comments on commit 329a4cf

Please sign in to comment.