burnett01-rsync-deployments/entrypoint.sh

18 lines
430 B
Bash
Raw Normal View History

2020-01-05 19:11:59 +08:00
#!/bin/sh
2019-02-09 21:17:45 +08:00
2020-01-05 19:06:14 +08:00
# Start the SSH agent and load key.
source agent-start "$GITHUB_ACTION"
echo "$INPUT_REMOTE_KEY" | agent-add
2019-02-09 21:17:45 +08:00
2020-06-23 03:40:12 +08:00
# Add strict errors.
2020-01-05 19:19:21 +08:00
set -eu
2020-06-23 03:40:12 +08:00
# Variables.
SWITCHES="$INPUT_SWITCHES"
RSH="ssh -o StrictHostKeyChecking=no -p $INPUT_REMOTE_PORT $INPUT_RSH"
LOCAL_PATH="$GITHUB_WORKSPACE/$INPUT_PATH"
DSN="$INPUT_REMOTE_USER@$INPUT_REMOTE_HOST"
# Deploy.
sh -c "rsync $SWITCHES -e '$RSH' $LOCAL_PATH $DSN:$INPUT_REMOTE_PATH"