Initial code commit

This commit is contained in:
Barry Bell 2019-02-09 13:17:45 +00:00
parent dc7ac312a6
commit f8860c9bce
3 changed files with 80 additions and 2 deletions

13
entrypoint.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
set -eu
# Set deploy key
SSH_PATH="$HOME/.ssh"
mkdir "$SSH_PATH"
echo "$DEPLOY_KEY" > "$SSH_PATH/deploy_key"
chmod 600 "$SSH_PATH/deploy_key"
# Do deployment
sh -c "rsync $1 -e 'ssh -i $SSH_PATH/deploy_key -o StrictHostKeyChecking=no' $2 $GITHUB_WORKSPACE/ $3"