mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			750 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			750 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
 | |
| version=$($(dirname "$0")/get_version.sh)
 | |
| if [ "$TRAVIS_BRANCH" = "develop" ]
 | |
| then
 | |
|     docker tag ethereum/solc:build ethereum/solc:nightly;
 | |
|     docker tag ethereum/solc:build ethereum/solc:nightly-"$version"-"$TRAVIS_COMMIT"
 | |
|     docker push ethereum/solc:nightly-"$version"-"$TRAVIS_COMMIT";
 | |
|     docker push ethereum/solc:nightly;
 | |
| elif [ "$TRAVIS_TAG" = v"$version" ]
 | |
| then
 | |
|     docker tag ethereum/solc:build ethereum/solc:stable;
 | |
|     docker tag ethereum/solc:build ethereum/solc:"$version";
 | |
|     docker push ethereum/solc:stable;
 | |
|     docker push ethereum/solc:"$version";
 | |
| else
 | |
|     echo "Not publishing docker image from branch $TRAVIS_BRANCH or tag $TRAVIS_TAG"
 | |
| fi
 |