Skip to content

Commit

Permalink
feat: Print asset files if they exist
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmanjiro13 committed Oct 9, 2023
1 parent 2d6cb94 commit b1549a0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bumper.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ func (b *bumper) Bump() error {
}
fmt.Println(releases)

if len(b.assetFiles) > 0 {
fmt.Println("Asset files:")
fmt.Println(strings.Join(b.assetFiles, "\n"))
fmt.Println()
}

current, isInitial, err := b.currentVersion()
if err != nil {
return err
Expand Down

0 comments on commit b1549a0

Please sign in to comment.