wp-theme/_ci/deploy.sh

12 lines
267 B
Bash
Raw Normal View History

2016-03-19 01:22:18 +01:00
#!/usr/bin/env bash
# $DEPLOY_SRC = ~/src/github.com/ascribe/wp-theme/ascribe/
set -e;
if [ $CI_BRANCH == "master" ]; then
2016-04-07 15:37:06 +02:00
rsync --recursive --delete --delete-excluded --checksum --verbose -e "ssh" $DEPLOY_SRC $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
2016-03-19 01:22:18 +01:00
fi;
exit;