From 74ac27cc15e60b4ed9ba94422478e3bb4bee81c3 Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Wed, 30 Sep 2020 15:54:49 -0400 Subject: [PATCH] Add two and three digit publishing The two and three digit images were accidentally removed from publishing in a prior commit Signed-off-by: Brett Logan (cherry picked from commit 39353786dfa49b589a4cc7f9dc8130a7802b5361) --- ci/scripts/publish_docker.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/scripts/publish_docker.sh b/ci/scripts/publish_docker.sh index e648333041c..a46c6537785 100755 --- a/ci/scripts/publish_docker.sh +++ b/ci/scripts/publish_docker.sh @@ -10,6 +10,8 @@ docker login --username "${DOCKER_USERNAME}" --password "${DOCKER_PASSWORD}" for image in baseos peer orderer ccenv tools; do for release in ${RELEASE} ${TWO_DIGIT_RELEASE}; do docker tag "hyperledger/fabric-${image}" "hyperledger/fabric-${image}:amd64-${release}" + docker tag "hyperledger/fabric-${image}" "hyperledger/fabric-${image}:${release}" docker push "hyperledger/fabric-${image}:amd64-${release}" + docker push "hyperledger/fabric-${image}:${release}" done done