mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2025-06-28 09:29:43 -04:00
Move to github
This commit is contained in:
27
.github/workflows/deploy.yml
vendored
Normal file
27
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
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: /root/.dotnet/dotnet publish --runtime linux-arm64
|
||||
- name: Install sshpass
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install sshpass
|
||||
- name: Stop the realms server for the deployment
|
||||
run: sshpass -p '${{ secrets.VPS_PASSWORD }}' ssh -o StrictHostKeyChecking=no -p 9476 root@ssh.surf "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: sshpass -p '${{ secrets.VPS_PASSWORD }}' ssh -o StrictHostKeyChecking=no -p 9476 root@ssh.surf "pm2 start 0"
|
Reference in New Issue
Block a user