From 95710f1c374cddb6d5cb0839110dab352158c371 Mon Sep 17 00:00:00 2001 From: Karoly Albert Szabo Date: Tue, 19 Feb 2019 19:19:32 +0100 Subject: [PATCH] Merge PR #3684: Add tags for every version in docker repo --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9efb455e11..5a4df533b1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -326,13 +326,15 @@ jobs: GAIAD_VERSION="stable" elif [ "${CIRCLE_BRANCH}" == "develop" ]; then GAIAD_VERSION="develop" - else - GAIAD_VERSION=`/tmp/workspace/bin/gaiad version` fi docker build -t tendermint/gaia:$GAIAD_VERSION . docker login -u $DOCKER_USER -p $DOCKER_PASS docker push tendermint/gaia:$GAIAD_VERSION + # Push the tag also for the version, so clients can build up on top of it + GAIAD_VERSION=`/tmp/workspace/bin/gaiad version` + docker push tendermint/gaia:$GAIAD_VERSION + workflows: version: 2 test-suite: