Hospital-Management-System/client/continuous_deployment/build.sh

8 lines
143 B
Bash
Raw Normal View History

2021-03-31 01:50:36 +00:00
#!/bin/bash
set -ev
#run only on master
if [[ $TRAVIS_PULL_REQUEST == "false" ]] && [[ $TRAVIS_BRANCH == "master" ]]; then
npm run build
fi