Skip to content

Commit

Permalink
fix(pkg/filler): missing tag data skip
Browse files Browse the repository at this point in the history
  • Loading branch information
fntlnz committed Jul 23, 2024
1 parent 872e787 commit 18fc0b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/filler/filler.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ func (f *Filler) RepoData(ctx context.Context, repo string) (*templates.Reposito
tagData, err := f.TagData(ctx, repo, tag)
if err != nil {
log.Warn("could not generate tag data", logger.ErrAttr(err), slog.String("tag", tag))
continue
}
tags = append(tags, *tagData)
}
Expand Down

0 comments on commit 18fc0b7

Please sign in to comment.