mirror of https://github.com/peter4431/rq.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			537 B
		
	
	
	
		
			Makefile
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			537 B
		
	
	
	
		
			Makefile
		
	
| all:
 | |
| 	@grep -Ee '^[a-z].*:' Makefile | cut -d: -f1 | grep -vF all
 | |
| 
 | |
| clean:
 | |
| 	rm -rf build/ dist/
 | |
| 
 | |
| release: clean
 | |
| 	# Check if latest tag is the current head we're releasing
 | |
| 	echo "Latest tag = $$(git tag | sort -nr | head -n1)"
 | |
| 	echo "HEAD SHA       = $$(git sha head)"
 | |
| 	echo "Latest tag SHA = $$(git tag | sort -nr | head -n1 | xargs git sha)"
 | |
| 	@test "$$(git sha head)" = "$$(git tag | sort -nr | head -n1 | xargs git sha)"
 | |
| 	make force_release
 | |
| 
 | |
| force_release: clean
 | |
| 	git push --tags
 | |
| 	python setup.py sdist bdist_wheel
 | |
| 	twine upload dist/*
 |