Skip to content

Commit be7978f

Browse files
author
Jairo Llopis
committed
Fix suffix image name generation
1 parent 6a8d333 commit be7978f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hooks/push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ docker(
2222

2323
# Push built images
2424
local_image = "%s:%s" % (REPO, VERSION)
25-
public_image = "%s/%s%s" % (REGISTRY, local_image, SUFFIX)
25+
public_image = "%s/%s%s:%s" % (REGISTRY, REPO, SUFFIX, VERSION)
2626
docker["image", "tag", local_image, public_image]
2727
docker["image", "push", public_image] & FG
2828
if VERSION == local.env.get("LATEST_RELEASE"):

0 commit comments

Comments
 (0)