Skip to content

Commit a757934

Browse files
authored
Merge pull request #16 from j-fuentes/push-canary
Push canary docker image
2 parents 3b0943c + 19facdc commit a757934

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ push-docker-image:
7373
docker push $(DOCKER_IMAGE_TAG)
7474
docker push $(DOCKER_IMAGE):latest
7575

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+
7681
# CI
7782

7883
export PATH:=$(GOPATH)/bin:$(PATH)
@@ -82,6 +87,6 @@ ci-deps:
8287

8388
ci-test: ci-deps test lint
8489

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
8691

8792
ci-publish: ci-build push-docker-image

0 commit comments

Comments
 (0)