1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-16 15:02:53 -04:00

Update the deploy script #6

This commit is contained in:
CyberL1 2024-04-27 10:10:41 +02:00
parent 6e5cf16b88
commit ba1656eefa

View File

@ -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"