Skip to content
This repository was archived by the owner on Sep 13, 2025. It is now read-only.

Commit a03050a

Browse files
authored
Publish server in CI
1 parent 4d37c0b commit a03050a

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,16 @@ jobs:
2828
# - name: Test
2929
# run: dotnet test --no-build --verbosity normal
3030
- name: Publish Client
31-
run: dotnet publish VoxelThing.Client/VoxelThing.Client.csproj -c Release -o publish --nologo
31+
run: dotnet publish VoxelThing.Client/VoxelThing.Client.csproj -c Release -o publish-client --nologo
32+
- name: Publish Server
33+
run: dotnet publish VoxelThing.Server/VoxelThing.Server.csproj -c Release -o publish-server --nologo
3234
- name: Upload Client
3335
uses: actions/upload-artifact@v4
3436
with:
35-
name: dotnet-results-8.0.x
36-
path: publish
37+
name: client-net8
38+
path: publish-client
39+
- name: Upload Server
40+
uses: actions/upload-artifact@v4
41+
with:
42+
name: server-net8
43+
path: publish-server

0 commit comments

Comments
 (0)