From 6b68172abb2dfb3b5f6aae653134d020cbd7b7f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=82=E4=BF=9D=E6=B2=BB=E7=90=86?= Date: Fri, 6 Dec 2024 15:26:30 +0800 Subject: [PATCH] Create dotnet-build.yml --- .github/workflows/dotnet-build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/dotnet-build.yml diff --git a/.github/workflows/dotnet-build.yml b/.github/workflows/dotnet-build.yml new file mode 100644 index 0000000..d113d5f --- /dev/null +++ b/.github/workflows/dotnet-build.yml @@ -0,0 +1,27 @@ +name: Build, Publish + +on: + push: + branches: [ main ] + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: | + 8.x.x + + + - name: install workloads + run: dotnet workload restore AvaCs3.sln + + - name: Build + run: dotnet build AvaCs3.Android -c Release +