feat: make release use wizard mode
All checks were successful
continuous-integration/drone/push Build is passing

Some bugs squashed while testing this extensively.
This commit is contained in:
2021-11-06 22:36:01 +01:00
parent f9726b6643
commit 63d9703d9d
4 changed files with 188 additions and 54 deletions

View File

@ -63,7 +63,14 @@ var recipeLintCommand = &cli.Command{
allImagesTagged = false
}
tag := img.(reference.NamedTagged).Tag()
var tag string
switch img.(type) {
case reference.NamedTagged:
tag = img.(reference.NamedTagged).Tag()
case reference.Named:
noUnstableTags = false
}
if tag == "latest" {
noUnstableTags = false
}