We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
patch
1 parent 5c976bf commit 943d365Copy full SHA for 943d365
scripts/deploy.sh
@@ -1,13 +1,22 @@
1
-#!/bin/bash
+#!/bin/sh
2
+
3
+# Usage:
4
+# `./scripts/deploy.sh` is same as `./scripts/deploy.sh patch`
5
+# To deploy minor version `./scripts/deploy.sh minor`
6
+# To deploy major version `./scripts/deploy.sh major`
7
8
set -xeuo pipefail
9
-bumpversion patch
10
+BUMP_VERSION=$1
11
+if [ "$BUMP_VERSION" = "" ]
12
+then
13
+ BUMP_VERSION="patch"
14
+fi
15
-export CURRENT_BRANCH
16
+bumpversion $BUMP_VERSION
17
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
-git push origin "$CURRENT_BRANCH:$CURRENT_BRANCH"
18
git push --tags
19
+git push origin "$CURRENT_BRANCH:$CURRENT_BRANCH"
20
21
rm -rf dist/
22
python setup.py sdist
0 commit comments