We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a3b8a0 commit a7edc32Copy full SHA for a7edc32
push.sh
@@ -51,6 +51,10 @@ if [ "$commit" ] && [ "$branch" ]; then
51
git push origin master;
52
53
if [ "$upgrade_version" == 'y' ] || [ "$upgrade_version" == 'Y' ]; then
54
+ echo "[i] updating new git tag to v$input_new_version"
55
+ git tag -a v"$input_new_version" -m "launch v$input_new_version"
56
+ git push origin v"$input_new_version"
57
+
58
echo "[i] preparing upload to pypi..."
59
if ! [ -x "$(command -v twine)" ]; then
60
pip install twine
0 commit comments