mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
Matthias Kretschmann
72fff1dbca
* change beta deployment behavior: on every pull request instead of named branch * consolidate gulp deploy tasks into one * push 100 objects in parallel to S3 * make CI scripts a bit more verbose
18 lines
458 B
Bash
Executable File
18 lines
458 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e;
|
|
|
|
echo "$(tput setaf 136)"
|
|
echo "============================================="
|
|
echo " Starting build "
|
|
echo "============================================="
|
|
echo "$(tput sgr0)" # reset
|
|
|
|
gulp build --production
|
|
|
|
echo "$(tput setaf 64)" # green
|
|
echo "---------------------------------------------"
|
|
echo " ✓ done building"
|
|
echo "---------------------------------------------"
|
|
echo "$(tput sgr0)" # reset
|