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

24 lines
836 B
YAML
Raw Normal View History

2024-04-20 16:25:17 -04:00
name: Deploy
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-20 16:29:52 -04:00
run: /root/.dotnet/dotnet publish --runtime linux-arm64
2024-04-20 16:50:38 -04:00
- name: Install sshpass
run: |
apt-get update
apt-get install sshpass
2024-04-20 16:27:43 -04:00
- name: Deploy compiled binary and dll files to server
2024-04-20 17:16:17 -04:00
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