1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-07-01 06:02:12 +02:00
site/_ci/deploy.sh
Matthias Kretschmann 72fff1dbca Travis setup (#72)
* change beta deployment behavior: on every pull request instead of named branch
* consolidate gulp deploy tasks into one
* push 100 objects in parallel to S3
* make CI scripts a bit more verbose
2016-06-23 16:23:53 +02:00

37 lines
798 B
Bash
Executable File

#!/usr/bin/env bash
set -e;
##
## check for pull request against master
##
if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
gulp deploy --beta;
##
## check for master push which is no pull request
##
elif [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
gulp deploy --live;
else
echo "$(tput setaf 64)" # green
echo "---------------------------------------------"
echo " ✓ nothing to deploy "
echo "---------------------------------------------"
echo "$(tput sgr0)" # reset
fi;
echo "$(tput setaf 64)" # green
echo "---------------------------------------------"
echo " ✓ done deployment "
echo "---------------------------------------------"
echo "$(tput sgr0)" # reset
exit;