1
0
mirror of https://github.com/CyberL1/MyMcRealms.git synced 2024-09-19 07:52:52 -04:00
MyMcRealms/.github/workflows/deploy.yml
2024-04-27 10:24:16 +02:00

30 lines
1.1 KiB
YAML

name: Deploy
run-name: Deploy 🚀
on: [push]
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dotnet
run: |
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh
- name: Compile MyMcRealms
run: /home/runner/.dotnet/dotnet publish --runtime linux-arm64
- name: Install ssh agent
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Add the ssh key to known_keys
run: ssh-keyscan cyber@my-mc.link > /home/runner/.ssh/known_keys
- name: Stop the realms server for the deployment
run: ssh cyber@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/* cyber@my-mc.link:/home/cyber/MyMcRealms
- name: Start the realms server again
run: ssh -p cyber@my-mc.link "pm2 start 0"