Skip to content

Commit

Permalink
Remove GitHub client 'tag_name' workaround
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Hros <roman.hros@dnation.cloud>
  • Loading branch information
chess-knight committed Sep 3, 2024
1 parent 5a255ff commit aace609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/assetsclient/github/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (c *realGhClient) ListRelease(ctx context.Context) ([]string, error) {
releases := []string{}

for _, release := range repoRelease {
releases = append(releases, *release.TagName)
releases = append(releases, *release.Name)
}

return releases, nil
Expand Down

0 comments on commit aace609

Please sign in to comment.