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