aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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