fix: also show skip for non semver tags
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2022-01-04 22:49:36 +01:00
parent 76adc45431
commit 49ccf2d204
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ You may invoke this command in "wizard" mode and be prompted for input:
tag := img.(reference.NamedTagged).Tag()
logrus.Warning(fmt.Sprintf("unable to determine versioning semantics of %s, listing all tags", tag))
msg = fmt.Sprintf("upgrade to which tag? (service: %s, tag: %s)", service.Name, tag)
compatibleStrings = []string{}
compatibleStrings = []string{"skip"}
for _, regVersion := range regVersions {
compatibleStrings = append(compatibleStrings, regVersion.Name)
}