From b53e841b69452f5c08dee2a7bf51129a5e4bb4b4 Mon Sep 17 00:00:00 2001 From: Glenn Date: Mon, 17 Mar 2025 13:40:06 +0100 Subject: [PATCH] ci: fix quotes --- .drone.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index f2b6c7b..8fdd5e2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -53,17 +53,15 @@ steps: - chmod 600 ~/.ssh/deploy_key - ssh-keygen -f ~/.ssh/deploy_key -y > ~/.ssh/deploy_key.pub - "cat ~/.ssh/deploy_key.pub | cut -f3 -d' '" - - | - ssh -o StrictHostKeyChecking=no \ + - 'ssh -o StrictHostKeyChecking=no \ -i ~/.ssh/deploy_key \ "$SSH_USER@$SSH_HOST" \ - ps:stop social - - | - ssh -o StrictHostKeyChecking=no \ + ps:stop social' + - 'ssh -o StrictHostKeyChecking=no \ -i ~/.ssh/deploy_key \ "$SSH_USER@$SSH_HOST" \ git:from-image social \ - "glenux/service-gotosocial:${DRONE_BRANCH/\\//-}_${DRONE_COMMIT_SHA:0:8}" + "glenux/service-gotosocial:${DRONE_BRANCH/\\//-}_${DRONE_COMMIT_SHA:0:8}"' - echo "SUCCESS" # volumes: -- 2.45.3