From f76819806d100f6ebb4adc08237a3bffdcb037f7 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 27 Apr 2024 10:11:48 +0200 Subject: [PATCH] forgot o --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 51a4aa3..d2842af 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,8 +20,8 @@ jobs: with: ssh-private-key: ${{ secrets.DEPLOY_KEY }} - name: Stop the realms server for the deployment - run: ssh -o StrictHostKeyChecking=n my-mc.link "pm2 stop 0" + run: ssh -o StrictHostKeyChecking=no my-mc.link "pm2 stop 0" - name: Deploy compiled binary and dll files to server - run: scp -o StrictHostKeyChecking=n -r MyMcRealms/bin/Release/net8.0/linux-arm64/publish/* my-mc.link:/home/cyber/MyMcRealms + run: scp -o StrictHostKeyChecking=no -r MyMcRealms/bin/Release/net8.0/linux-arm64/publish/* my-mc.link:/home/cyber/MyMcRealms - name: Start the realms server again - run: ssh -o StrictHostKeyChecking=n -p my-mc.link "pm2 start 0" + run: ssh -o StrictHostKeyChecking=no -p my-mc.link "pm2 start 0"