From 610a1f5794f10e4d2b9b0b16feb96e37e947c7da Mon Sep 17 00:00:00 2001 From: mbohlool Date: Tue, 27 Dec 2016 17:13:17 -0800 Subject: [PATCH] document release steps in a bash file. --- scripts/release.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/release.sh diff --git a/scripts/release.sh b/scripts/release.sh new file mode 100755 index 000000000..f276bee5c --- /dev/null +++ b/scripts/release.sh @@ -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' +