Merge pull request #3629 from deitch/correct-name

use correct manifest name when pushing
This commit is contained in:
Avi Deitcher
2021-04-20 14:06:39 +03:00
committed by GitHub

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
}