forked from tmelz/reddit_api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
executable file
·36 lines (29 loc) · 756 Bytes
/
deploy.sh
File metadata and controls
executable file
·36 lines (29 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
status=$(git status | head -n 1)
if [[ "$status" != "# On branch master" ]]; then
echo "Not on master branch. Goodbye"
exit 1
fi
lines=$(git status | wc -l)
if [ $lines -ne 2 ]; then
echo "There are pending changes. Goodbye"
exit 1
fi
version=$(python -c "import reddit; print reddit.__version__")
read -p "Do you want to deploy $version? [y/n] " input
case $input in
[Yy]* ) ;;
* ) echo "Goodbye"; exit 1;;
esac
python setup.py sdist upload -s
if [ $? -ne 0 ]; then
echo "Pushing distribution failed. Aborting."
exit 1
fi
git tag -s $version -m "Version $version"
if [ $? -ne 0 ]; then
echo "Tagging version failed. Aborting."
exit 1
fi
git push bboe master --tags
git push mellort master --tags