Skip to content

Commit

Permalink
Merge pull request #63 from ChronoBank/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ega-forever authored Dec 27, 2017
2 parents 3800556 + 6466891 commit f990d22
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,15 @@ after_success:
elif [ "$TRAVIS_TAG" != "" ]; then
IMAGE_TAG_NAME="develop"
fi;
- docker build --quiet -t gcr.io/deep-wares-144610/middleware-ethereum:$IMAGE_TAG_NAME .
- docker push gcr.io/deep-wares-144610/middleware-ethereum:$IMAGE_TAG_NAME

- IMAGE_TAG_NAME="latest"
- |
if [ "$TRAVIS_BRANCH" == "master" ]; then
docker build --quiet -t gcr.io/deep-wares-144610/$TRAVIS_BRANCH/middleware-ethereum:$IMAGE_TAG_NAME .
docker push gcr.io/deep-wares-144610/$TRAVIS_BRANCH/middleware-ethereum:$IMAGE_TAG_NAME
elif [ "$TRAVIS_BRANCH" == "develop" ]; then
docker build --quiet -t gcr.io/deep-wares-144610/$TRAVIS_BRANCH/middleware-ethereum:$IMAGE_TAG_NAME .
docker push gcr.io/deep-wares-144610/$TRAVIS_BRANCH/middleware-ethereum:$IMAGE_TAG_NAME
fi;
notifications:
email: false
Expand Down

0 comments on commit f990d22

Please sign in to comment.