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
commit 0dff43def5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
}