diff --git a/circle.yml b/circle.yml index 54117b8e1..1c40610fb 100644 --- a/circle.yml +++ b/circle.yml @@ -41,4 +41,5 @@ deployment: commands: - echo $GCLOUD_SERVICE_KEY | base64 --decode > ${HOME}/gcloud-service-key.json - docker login -e 1234@5678.com -u _json_key -p "$(cat ${HOME}/gcloud-service-key.json)" https://gcr.io + - make docker-build - docker push gcr.io/kubernetes-helm/tiller:canary diff --git a/scripts/ci.sh b/scripts/ci.sh index b6c59943f..7ed63df4a 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -31,8 +31,4 @@ case "${CIRCLE_NODE_INDEX-0}" in echo "Running 'make test-style'" make test-style ;; - 2) - echo "Running 'make docker-build'" - make docker-build - ;; esac