diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b1e68e40..0e2abbb1 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -30,13 +30,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 --no-restore + run: dotnet publish GameServer\GameServer.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 --no-restore + run: dotnet publish GameServer\GameServer.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 --no-restore + run: dotnet publish GameServer\GameServer.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