build: fix docker tag to include v prefix in version string

This commit is contained in:
Péter Szilágyi 2021-08-10 17:49:52 +03:00
parent 0fbc94eabc
commit c27bd3481e
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D

View File

@ -492,7 +492,7 @@ func doDocker(cmdline []string) {
case env.Branch == "master":
tags = []string{"latest"}
case strings.HasPrefix(env.Tag, "v1."):
tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), params.Version}
tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), "v" + params.Version}
}
// If architecture specific image builds are requested, build and push them
if *image {