diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b5d0eb..6ae90e9 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=no -p 9476 my-mc.link "pm2 stop 0" + run: ssh my-mc.link "pm2 stop 0" - name: Deploy compiled binary and dll files to server - run: scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -r MyMcRealms/bin/Release/net8.0/linux-arm64/publish/* my-mc.link:/home/cyber/MyMcRealms + run: scp -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=no -p my-mc.link "pm2 start 0" + run: ssh -p my-mc.link "pm2 start 0"