move deploy logic into main script

This commit is contained in:
Dave Machado 2017-08-08 21:30:47 -04:00
parent c16374a3f3
commit f5b506165e
2 changed files with 7 additions and 4 deletions

View File

@ -9,7 +9,4 @@ before_script:
- cd build
script:
- ./main.sh
after_success:
- ./build.sh
- ./deploy.sh

View File

@ -25,6 +25,12 @@ if [[ $? != 0 ]]; then
exit 1
else
echo "format validation passed!"
build.sh && deploy.sh
if [[ $? != 0 ]]; then
echo "JSON build and deploy failed!"
else
echo "JSON build and deploy success!"
fi
fi
echo "running link validation..."