From 180f82edf61918187e20d10e277ce617e826fbd2 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sat, 20 Apr 2024 22:27:43 +0200 Subject: [PATCH] Install dotnet in runner --- .gitea/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 04b81fa..696a8ed 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,7 +8,12 @@ jobs: 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: 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