2024-04-21 04:32:26 -04:00
|
|
|
name: Deploy
|
2024-04-20 16:25:17 -04:00
|
|
|
run-name: Deploy 🚀
|
2024-04-20 03:45:57 -04:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-04-20 16:25:17 -04:00
|
|
|
Deploy:
|
2024-04-20 03:45:57 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
2024-04-20 16:27:43 -04:00
|
|
|
- name: Install dotnet
|
|
|
|
run: |
|
|
|
|
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
|
|
|
|
chmod +x dotnet-install.sh
|
|
|
|
./dotnet-install.sh
|
2024-04-20 16:25:17 -04:00
|
|
|
- name: Compile MyMcRealms
|
2024-04-26 11:22:51 -04:00
|
|
|
run: /home/runner/.dotnet/dotnet publish --runtime linux-arm64
|
2024-04-27 03:54:39 -04:00
|
|
|
- name: Install ssh agent
|
|
|
|
uses: webfactory/ssh-agent@v0.9.0
|
2024-04-27 03:58:27 -04:00
|
|
|
with:
|
2024-04-27 04:00:29 -04:00
|
|
|
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
|
2024-04-20 17:27:56 -04:00
|
|
|
- name: Stop the realms server for the deployment
|
2024-04-27 03:54:39 -04:00
|
|
|
run: ssh -o StrictHostKeyChecking=no -p 9476 my-mc.link "pm2 stop 0"
|
2024-04-20 16:27:43 -04:00
|
|
|
- name: Deploy compiled binary and dll files to server
|
2024-04-27 03:54:39 -04:00
|
|
|
run: scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -r MyMcRealms/bin/Release/net8.0/linux-arm64/publish/* my-mc.link:/home/cyber/MyMcRealms
|
2024-04-20 17:27:56 -04:00
|
|
|
- name: Start the realms server again
|
2024-04-27 03:54:39 -04:00
|
|
|
run: ssh -o StrictHostKeyChecking=no -p my-mc.link "pm2 start 0"
|