From 052cfe164000cca9d37dc2a02386c0976cbb8995 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Thu, 1 Dec 2016 10:37:40 -0800 Subject: [PATCH] fix(ci): do not push canary image on release --- scripts/ci/deploy.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/ci/deploy.sh b/scripts/ci/deploy.sh index edb69d239..6f8199a18 100755 --- a/scripts/ci/deploy.sh +++ b/scripts/ci/deploy.sh @@ -40,10 +40,7 @@ echo "Building the tiller image" make docker-build VERSION="${VERSION}" echo "Pushing image to gcr.io" -if [[ "${VERSION}" != "canary" ]]; then - docker push "gcr.io/kubernetes-helm/tiller:${VERSION}" -fi -docker push gcr.io/kubernetes-helm/tiller:canary +docker push "gcr.io/kubernetes-helm/tiller:${VERSION}" echo "Building helm binaries" make build-cross