From e2430fc590c11d26d51188a4311dc5f1141a4d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kukuczka?= Date: Sun, 30 Mar 2025 12:37:21 +0200 Subject: [PATCH] even moar fix --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4a27758..272d4d2 100644 --- a/action.yml +++ b/action.yml @@ -71,7 +71,7 @@ runs: echo "DEBUG: Creating remote directory $REMOTE_DIR" ssh -o StrictHostKeyChecking=no -i "$SSH_KEY_FILE" \ "${{ inputs.ssh_user }}@${{ inputs.ssh_host }}" \ - mkdir -p "$REMOTE_DIR" && chmod -R 755 "$REMOTE_DIR" + "mkdir -p '$REMOTE_DIR' && chmod -R 755 '$REMOTE_DIR'" echo "DEBUG: Copying contents from local '$LOCAL_DIR' to remote '$REMOTE_DIR'" scp -o StrictHostKeyChecking=no -i "$SSH_KEY_FILE" -r "$LOCAL_DIR/"* \ @@ -88,4 +88,4 @@ runs: echo "created_paths<> $GITHUB_OUTPUT echo "$CREATED_PATHS" >> $GITHUB_OUTPUT - echo "EOF" >> $GITHUB_OUTPUT \ No newline at end of file + echo "EOF" >> $GITHUB_OUTPUT