aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/docker_deploy.sh
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-02-10 21:07:46 +0800
committerGitHub <noreply@github.com>2017-02-10 21:07:46 +0800
commit4f6ebae36c03bea6882c77a1c7841095e7c99049 (patch)
tree71973e4d79c937429b3047d217a5d432d0342adf /scripts/docker_deploy.sh
parente9ae50dc5994a02119655eff4ed488fb3918d41f (diff)
downloaddexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.gz
dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.tar.zst
dexon-solidity-4f6ebae36c03bea6882c77a1c7841095e7c99049.zip
Check for tag in travis.
Diffstat (limited to 'scripts/docker_deploy.sh')
-rwxr-xr-xscripts/docker_deploy.sh4
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