From 0333f08b815e51bd71186361bdbe10f11d48e0f7 Mon Sep 17 00:00:00 2001 From: Aly Sewelam Date: Sun, 14 Sep 2025 11:22:17 +0300 Subject: [PATCH] fix: love variables in ssh commands --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 354980a..9f7ce8a 100644 --- a/action.yml +++ b/action.yml @@ -76,8 +76,8 @@ runs: ssh -o StrictHostKeyChecking=yes \ -o UserKnownHostsFile= ~/.ssh/known_hosts \ -i ~/.ssh/id_rsa \ - ${REMOTE_USER}@${REMOTE_HOST} \ - docker-compose -f ${DEPLOYMENT_PATH} up -d --timeout ${TIMEOUT} + "${REMOTE_USER}@${REMOTE_HOST}" \ + docker-compose -f "${DEPLOYMENT_PATH}" up -d --timeout ${TIMEOUT} shell: bash - name: Verify services are running