diff options
author | chriseth <chris@ethereum.org> | 2017-02-10 21:07:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-10 21:07:46 +0800 |
commit | 4f6ebae36c03bea6882c77a1c7841095e7c99049 (patch) | |
tree | 71973e4d79c937429b3047d217a5d432d0342adf | |
parent | e9ae50dc5994a02119655eff4ed488fb3918d41f (diff) | |
download | dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.gz dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.bz2 dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.lz dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.xz dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.zst dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.zip |
Check for tag in travis.
-rwxr-xr-x | scripts/docker_deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/docker_deploy.sh b/scripts/docker_deploy.sh index dcd03f9e..c9682c16 100755 --- a/scripts/docker_deploy.sh +++ b/scripts/docker_deploy.sh @@ -10,7 +10,7 @@ if [ "$TRAVIS_BRANCH" == "develop" ]; then elif [ "$TRAVIS_BRANCH" == "release"]; then docker tag ethereum/solc:build ethereum/solc:stable; docker push ethereum/solc:stable; -elif [ "$TRAVIS_BRANCH" == v"$version"]; then +elif [ "$TRAVIS_TAG" == v"$version"]; then docker tag ethereum/solc:build ethereum/solc:"$version"; docker push ethereum/solc:"$version"; -fi
\ No newline at end of file +fi |