mirror of
https://github.com/bigchaindb/site.git
synced 2024-10-31 23:35:38 +01:00
10 lines
98 B
Bash
10 lines
98 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
|
|
if [ $CI_BRANCH == "master" ]; then
|
|
gulp deploy:beta
|
|
fi;
|
|
|
|
exit;
|