Skip to content

Commit 9626279

Browse files
author
Jairo Llopis
committed
Fix bug when tagging image
1 parent 092b636 commit 9626279

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
@@ -23,7 +23,7 @@ docker(
2323
# Push built images
2424
local_image = "%s:%s" % (REPO, VERSION)
2525
public_image = "%s/%s%s:%s" % (REGISTRY, REPO, SUFFIX, VERSION)
26-
docker["image", "tag", local_image, public_image]
26+
docker["image", "tag", local_image, public_image] & FG
2727
docker["image", "push", public_image] & FG
2828
if VERSION == local.env.get("LATEST_RELEASE"):
2929
latest_version = "alpine" if VERSION.endswith("-alpine") else "latest"

0 commit comments

Comments
 (0)