1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-18 15:42:51 -04:00

File will no longer be busy

This commit is contained in:
CyberL1 2024-04-20 23:27:56 +02:00
parent 6948dbda61
commit 62e1782190

View File

@ -19,5 +19,9 @@ jobs:
run: |
apt-get update
apt-get install sshpass
- name: Stop the realms server for the deployment
run: ssh root@ssh.surf -P 9476 pm2 stop 0
- name: Deploy compiled binary and dll files to server
run: sshpass -p '${{ secrets.VPS_PASSWORD }}' scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -r -P 9476 MyMcRealms/bin/Release/net8.0/linux-arm64/publish/* root@ssh.surf:/root/MyMcRealms
- name: Start the realms server again
run: ssh root@ssh.surf -P 9476 pm2 start 0