Skip to content

Commit 6060d1c

Browse files
authored
Merge pull request #80 from mbohlool/master
document release steps in a bash file
2 parents 9d5a68d + 610a1f5 commit 6060d1c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/release.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file is intended to document release steps.
2+
# Verify each step's result before calling the next command.
3+
# It is documented here with the intention of being automated
4+
# as a shell script later.
5+
6+
echo 'git clean -xdf'
7+
echo 'python setup.py bdist_wheel --universal'
8+
echo 'twine upload dist/* -r https://upload.pypi.org/legacy/ -u kubernetes'
9+

0 commit comments

Comments
 (0)