diff --git a/.github/workflows/nightly-build.yaml b/.github/workflows/nightly-build.yaml index 84a6af0..f306f6a 100644 --- a/.github/workflows/nightly-build.yaml +++ b/.github/workflows/nightly-build.yaml @@ -23,7 +23,7 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Build client - run: dotnet publish RageCoop.Client/RageCoop.Client.csproj --no-restore --configuration Release -o RageCoop.Client/bin/RageCoop -f net48 + run: dotnet build RageCoop.Client/RageCoop.Client.csproj --no-restore --configuration Release -o bin/Release/Client/RageCoop - name: Build server win-x64 run: dotnet publish RageCoop.Server/RageCoop.Server.csproj --self-contained -p:PublishSingleFile=true -p:PublishTrimmed=false -r win-x64 -o RageCoop.Server/bin/win-x64 -c Release - name: Build server linux-x64 @@ -33,7 +33,7 @@ jobs: - uses: vimtor/action-zip@v1 with: - files: RageCoop.Client/bin + files: bin/Release/Client dest: RageCoop.Client.zip - uses: vimtor/action-zip@v1