use correct manifest name when pushing

Signed-off-by: Avi Deitcher <avi@deitcher.net>
This commit is contained in:
Avi Deitcher 2021-04-20 10:41:11 +03:00
parent 60919fee96
commit 74c7de7977

View File

@ -61,7 +61,7 @@ func PushWithManifest(dir string, name, suffix string, pushImage, pushManifest b
if pushManifest {
fmt.Printf("Pushing %s to manifest %s\n", imageName, name)
_, _, err = registry.PushManifest(imageName, auth)
_, _, err = registry.PushManifest(name, auth)
if err != nil {
return err
}