Merge pull request #80 from mbohlool/master

document release steps in a bash file
This commit is contained in:
mbohlool 2016-12-28 03:51:48 -08:00 committed by GitHub
commit 6060d1c33a

9
scripts/release.sh Executable file
View File

@ -0,0 +1,9 @@
# This file is intended to document release steps.
# Verify each step's result before calling the next command.
# It is documented here with the intention of being automated
# as a shell script later.
echo 'git clean -xdf'
echo 'python setup.py bdist_wheel --universal'
echo 'twine upload dist/* -r https://upload.pypi.org/legacy/ -u kubernetes'