1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-22 09:46:57 +01:00

setup codeship scripts

This commit is contained in:
Matthias Kretschmann 2016-03-03 17:21:24 +01:00
parent 886fe5e724
commit a20314c373
3 changed files with 25 additions and 0 deletions

7
_ci/build.sh Normal file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -e;
gulp build --production
exit;

9
_ci/deploy.sh Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -e;
if [ $CI_BRANCH == "master" ]; then
gulp deploy:beta
fi;
exit;

9
_ci/setup.sh Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -e;
npm install gulp -g
npm install
bundle install
exit;