From 44615a7931b343b2faff5f4f0cdcab1c644f249f Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Fri, 22 Nov 2019 00:28:06 +0100 Subject: [PATCH] remove --includes, --excludes and --filters switches. Use --switches instead to include/exclude files and folders interchangeably --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index a34fe6f..ef1adda 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,4 +14,4 @@ echo "$DEPLOY_KEY" > "$SSH_PATH/deploy_key" chmod 600 "$SSH_PATH/deploy_key" # Do deployment -sh -c "rsync $INPUT_SWITCHES -e 'ssh -i $SSH_PATH/deploy_key -o StrictHostKeyChecking=no $INPUT_RSH' $INPUT_INCLUDES $INPUT_EXCLUDES $INPUT_FILTERS $GITHUB_WORKSPACE/$INPUT_PATH $INPUT_UPLOAD_PATH" +sh -c "rsync $INPUT_SWITCHES -e 'ssh -i $SSH_PATH/deploy_key -o StrictHostKeyChecking=no $INPUT_RSH' $GITHUB_WORKSPACE/$INPUT_PATH $INPUT_UPLOAD_PATH"