From eb4b2efbff027ab85e4585f820d0629ebc0cb52a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Tue, 24 Jun 2025 09:31:31 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0c67d0..1f61a82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,16 +23,16 @@ jobs: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Restore WebAPI - run: dotnet restore src/Bimix.API/Bimix.API.csproj + run: dotnet restore Bimix.API/Bimix.API.csproj - name: Restore WebUI - run: dotnet restore src/Bimix.UI.Web/Bimix.UI.Web.csproj + run: dotnet restore Bimix.UI.Web/Bimix.UI.Web.csproj - name: Build WebAPI - run: dotnet build src/Bimix.API/Bimix.API.csproj --configuration Release --no-restore + run: dotnet build Bimix.API/Bimix.API.csproj --configuration Release --no-restore - name: Build WebUI - run: dotnet build src/Bimix.UI.Web/Bimix.UI.Web.csproj --configuration Release --no-restore + run: dotnet build Bimix.UI.Web/Bimix.UI.Web.csproj --configuration Release --no-restore - name: Publish WebAPI run: |