mirror of
https://github.com/bigchaindb/site.git
synced 2025-02-09 02:44:55 +01:00
12 lines
124 B
Bash
Executable File
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;
|