1
0
mirror of https://github.com/bigchaindb/site.git synced 2025-01-26 09:43:04 +01:00
site/_ci/deploy.sh

12 lines
124 B
Bash
Executable File

#!/usr/bin/env bash
set -e;
if [ $CI_BRANCH == "master" ]; then
gulp deploy:live
else
gulp deploy:beta
fi;
exit;