mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 17:50:07 +01:00
setup codeship scripts
This commit is contained in:
parent
886fe5e724
commit
a20314c373
7
_ci/build.sh
Normal file
7
_ci/build.sh
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e;
|
||||||
|
|
||||||
|
gulp build --production
|
||||||
|
|
||||||
|
exit;
|
9
_ci/deploy.sh
Normal file
9
_ci/deploy.sh
Normal 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
9
_ci/setup.sh
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e;
|
||||||
|
|
||||||
|
npm install gulp -g
|
||||||
|
npm install
|
||||||
|
bundle install
|
||||||
|
|
||||||
|
exit;
|
Loading…
Reference in New Issue
Block a user