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

Install dotnet in runner

This commit is contained in:
CyberL1 2024-04-20 22:27:43 +02:00
parent f4d231f46d
commit 180f82edf6

View File

@ -8,7 +8,12 @@ jobs:
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 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 - name: Compile MyMcRealms
run: dotnet publish --runtime linux-arm64 run: dotnet publish --runtime linux-arm64
- name: Deploy compile binary and dll files to server - 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 run: scp -r -P 9476 MyMcRealms\bin\Release\net8.0\linux-arm64\publish\* root@ssh.surf:/root/MyMcRealms