Fix bug where prod would automatically run after release stage 2 (#625)

* Fix bug where prod would automatically run after release stage 2

* fixed make release-burned
This commit is contained in:
Charlotte Weaver
2019-03-01 20:20:16 -08:00
committed by GitHub
parent d8e3721846
commit 2583016693
+6 -3
View File
@@ -66,8 +66,10 @@ release-stage-1 : dev-env bump clean-lite gen-package-lock
# build dist and release to dev pypi
release-stage-2 : dev-env pydist twine
@echo "Dist built and uploaded to test.pypi.org"
@echo "Test the install `make install-release-test` and then upload to Pypi prod"
@echo "`make twine-prod`"
@echo "Test the install:"
@echo " make install-release-test"
@echo "Then upload to Pypi prod:"
@echo " make twine-prod"
release-stage-final: twine-prod
@echo "Release uploaded to pypi.org"
@@ -76,7 +78,8 @@ release-stage-final: twine-prod
# use this if you accidently burned a test release version number,
release-burned : dev-env pydist twine-prod
@echo "Dist built and uploaded to pypi.org"
@echo "Test the install `make install-release`"
@echo "Test the install:"
@echo " make install-release"
dev-env :
pip install -r server/requirements-dev.txt