Skip to content

Commit 943d365

Browse files
authoredJul 12, 2019
Default bumpversion to patch. Allow minor/major.
1 parent 5c976bf commit 943d365

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed
 

‎scripts/deploy.sh

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
1-
#!/bin/bash
1+
#!/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`
27

38
set -xeuo pipefail
49

5-
bumpversion patch
10+
BUMP_VERSION=$1
11+
if [ "$BUMP_VERSION" = "" ]
12+
then
13+
BUMP_VERSION="patch"
14+
fi
615

7-
export CURRENT_BRANCH
16+
bumpversion $BUMP_VERSION
817
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
9-
git push origin "$CURRENT_BRANCH:$CURRENT_BRANCH"
1018
git push --tags
19+
git push origin "$CURRENT_BRANCH:$CURRENT_BRANCH"
1120

1221
rm -rf dist/
1322
python setup.py sdist

0 commit comments

Comments
 (0)