mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
12 lines
267 B
Bash
12 lines
267 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# $DEPLOY_SRC = ~/src/github.com/ascribe/wp-theme/ascribe/
|
||
|
|
||
|
set -e;
|
||
|
|
||
|
if [ $CI_BRANCH == "master" ]; then
|
||
|
rsync --recursive --delete --delete-excluded --checksum --verbose -e "ssh" $DEPLOY_SRC $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
|
||
|
fi;
|
||
|
|
||
|
exit;
|