new inputs and shell

This commit is contained in:
Steven Agyekum 2019-12-04 18:29:34 +01:00 committed by GitHub
parent 1eb5088cc2
commit 72f04677de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -1,17 +1,18 @@
#!/bin/sh
#!/bin/bash
set -eu
# Set deploy key
SSH_PATH="$HOME/.ssh"
# Create .ssh dir if it doesn't exist
if [ ! -d "$SSH_PATH" ]; then
mkdir "$SSH_PATH"
fi
[ -d "$SSH_PATH" ] || mkdir "$SSH_PATH"
# Place deploy_key into .ssh dir
echo "$DEPLOY_KEY" > "$SSH_PATH/deploy_key"
echo "$INPUT_REMOTE_KEY" > "$SSH_PATH/key"
# Set r+w to user only
chmod 600 "$SSH_PATH/deploy_key"
chmod 600 "$SSH_PATH/key"
# Do deployment
sh -c "rsync $INPUT_SWITCHES -e 'ssh -i $SSH_PATH/deploy_key -o StrictHostKeyChecking=no $INPUT_RSH' $GITHUB_WORKSPACE/$INPUT_PATH $INPUT_UPLOAD_PATH"
sh -c "rsync $INPUT_SWITCHES -e 'ssh -i $SSH_PATH/key -o StrictHostKeyChecking=no $INPUT_RSH' $GITHUB_WORKSPACE/$INPUT_PATH $INPUT_REMOTE_USER@$INPUT_REMOTE_HOST:$INPUT_REMOTE_PATH"