mirror of
https://github.com/CyberL1/MyMcRealms.git
synced 2024-11-09 16:38:21 -05:00
20 lines
631 B
YAML
20 lines
631 B
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: /root/.dotnet/dotnet publish --runtime linux-arm64
|
|
- name: Deploy compiled binary and dll files to server
|
|
run: scp -r -P 9476 MyMcRealms\bin\Release\net8.0\linux-arm64\publish\* root@ssh.surf:/root/MyMcRealms
|