We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3041b8a commit 09436b9Copy full SHA for 09436b9
build.make
@@ -70,7 +70,7 @@ push-%: container-%
70
docker push $(IMAGE_NAME):$$tag; \
71
}; \
72
for tag in $(IMAGE_TAGS); do \
73
- if echo $$tag | grep -q -e '-canary$$'; then \
+ if [ "$$tag" = "canary" ] || echo "$$tag" | grep -q -e '-canary$$'; then \
74
: "creating or overwriting canary image"; \
75
push_image; \
76
elif docker pull $(IMAGE_NAME):$$tag 2>&1 | tee /dev/stderr | grep -q "manifest for $(IMAGE_NAME):$$tag not found"; then \
0 commit comments