From d7da43657ee2f53904f22e643a593e147926975a Mon Sep 17 00:00:00 2001 From: Somebody Date: Thu, 6 Jun 2024 18:08:43 +0800 Subject: [PATCH] fix workflow --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index afb6326a..53465122 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -33,13 +33,13 @@ jobs: run: dotnet restore - name: Publish win-x64 - run: dotnet publish GameServer\GameServer.csproj -o Release\win-x64 -r win-x64 --framework net8.0 -p:PublishSingleFile=true + run: dotnet publish Program\Program.csproj -o Release\win-x64 -r win-x64 --framework net8.0 -p:PublishSingleFile=true - name: Publish linux-x64 - run: dotnet publish GameServer\GameServer.csproj -o Release\linux-x64 -r linux-x64 --framework net8.0 -p:PublishSingleFile=true + run: dotnet publish Program\Program.csproj -o Release\linux-x64 -r linux-x64 --framework net8.0 -p:PublishSingleFile=true - name: Publish linux-arm64 - run: dotnet publish GameServer\GameServer.csproj -o Release\linux-arm64 -r linux-arm64 --framework net8.0 -p:PublishSingleFile=true + run: dotnet publish Program\Program.csproj -o Release\linux-arm64 -r linux-arm64 --framework net8.0 -p:PublishSingleFile=true - name: Upload win-x64 Build Artifact uses: actions/upload-artifact@v4.3.1