Skip to content

Commit

Permalink
Fix issue with docker hub
Browse files Browse the repository at this point in the history
Accidentally the latest image was pushed as "master", but not "latest"
  • Loading branch information
Warchant committed Apr 8, 2017
1 parent 1b9160d commit fccb586
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ jobs:
TAG=$(echo $CIRCLE_BRANCH | sed "s/[^a-zA-Z0-9_\-\.]/./g")
export TAG=$TAG
if [ "$TAG" == "master" ]; then
TAG="latest"
fi
# directory, where iroha build files will reside
export RELEASE=$IROHA_HOME/docker/tiny/iroha
mkdir -p $RELEASE/lib
Expand Down
3 changes: 0 additions & 3 deletions test_issue_transaction.sh

This file was deleted.

0 comments on commit fccb586

Please sign in to comment.