From 5569b53bacf5972ebd9a5fc409b96b133c8e87db Mon Sep 17 00:00:00 2001 From: Nathan Leiby Date: Tue, 8 Aug 2017 14:55:02 -0700 Subject: [PATCH] docker-publish: skip ECR publish, for debugging --- circleci/docker-publish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circleci/docker-publish b/circleci/docker-publish index b979083..fc720b1 100755 --- a/circleci/docker-publish +++ b/circleci/docker-publish @@ -63,9 +63,9 @@ docker build -t $ORG/$REPO:$SHORT_SHA . echo "Pushing to DockerHub..." push_hub_image $1 $2 $3 $4 -# TODO: fail if ECR_PUSH_ID is not set; # all repos eventually should dual publish (or explicitly opt-out) if [ "$ECR_PUSH_ID" != "" ]; then echo "ECR access_id available. Pushing to ECR..." - push_ecr_image + # push_ecr_image + echo "skipping" fi