mirror of
				https://github.com/docker/compose.git
				synced 2025-11-03 21:25:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -xe
 | 
						|
 | 
						|
if [ -z "$1" ]; then
 | 
						|
    echo 'pass a version as first argument'
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
git tag $1
 | 
						|
git push --tags
 | 
						|
python setup.py sdist upload
 | 
						|
 | 
						|
 |