We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b0943c + 19facdc commit a757934Copy full SHA for a757934
Makefile
@@ -73,6 +73,11 @@ push-docker-image:
73
docker push $(DOCKER_IMAGE_TAG)
74
docker push $(DOCKER_IMAGE):latest
75
76
+push-docker-image-canary:
77
+ docker tag $(DOCKER_IMAGE_TAG) $(DOCKER_IMAGE):canary
78
+ docker push $(DOCKER_IMAGE_TAG)
79
+ docker push $(DOCKER_IMAGE):canary
80
+
81
# CI
82
83
export PATH:=$(GOPATH)/bin:$(PATH)
@@ -82,6 +87,6 @@ ci-deps:
87
88
ci-test: ci-deps test lint
84
89
85
-ci-build: ci-test build build-docker-image build-all-platforms bundle-all-platforms
90
+ci-build: ci-test build build-docker-image build-all-platforms bundle-all-platforms push-docker-image-canary
86
91
92
ci-publish: ci-build push-docker-image
0 commit comments