1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-11 23:55:16 +01:00
blog/.ci/build.sh

10 lines
116 B
Bash
Executable File

#!/usr/bin/env bash
if [ $CI_BRANCH == "master" ]; then
gulp build --production
else
gulp build
fi;
exit;