1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-19 07:52:52 -04:00

Update the deploy script #4

This commit is contained in:
CyberL1 2024-04-27 10:01:51 +02:00
parent 7f292575a6
commit bbcdc0f04b

View File

@ -20,8 +20,8 @@ jobs:
with: with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }} ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Stop the realms server for the deployment - 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 - 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 - 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"