diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0654f397..0f76a7df 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,23 +10,17 @@ jobs: with: dotnet-version: '8.x' - - name: Navigate to VoiceCraft.Core - run: cd ./VoiceCraft.Core - - name: Install Dependencies - run: dotnet workload restore VoiceCraft.Core.csproj + - name: Install VoiceCraft.Core Dependencies + run: dotnet workload restore ./VoiceCraft.Core/VoiceCraft.Core.csproj - name: Build VoiceCraft.Core - run: dotnet build VoiceCraft.Core.csproj + run: dotnet build ./VoiceCraft.Core/VoiceCraft.Core.csproj - - name: Navigate to VoiceCraft.Network - run: cd ../VoiceCraft.Network - - name: Install Dependencies - run: dotnet workload restore VoiceCraft.Network.csproj + - name: Install VoiceCraft.Network Dependencies + run: dotnet workload restore ./VoiceCraft.Network/VoiceCraft.Network.csproj - name: Build VoiceCraft.Network - run: dotnet build VoiceCraft.Network.csproj + run: dotnet build ./VoiceCraft.Network/VoiceCraft.Network.csproj - - name: Navigate to VoiceCraft.Server - run: cd ./VoiceCraft.Server - - name: Install Dependencies - run: dotnet workload restore VoiceCraft.Server.csproj + - name: Install VoiceCraft.Server Dependencies + run: dotnet workload restore ./VoiceCraft.Server/VoiceCraft.Server.csproj - name: Build VoiceCraft.Server - run: dotnet build VoiceCraft.Server.csproj + run: dotnet build ./VoiceCraft.Server/VoiceCraft.Server.csproj