From 6ed470a1b8ff61efdd5cbad55a8e179906fdd2a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sun, 23 Nov 2025 15:25:35 +0100 Subject: [PATCH] build fix --- .gitea/workflows/buildContainers.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/buildContainers.yml b/.gitea/workflows/buildContainers.yml index 5bd5153..c0a408f 100644 --- a/.gitea/workflows/buildContainers.yml +++ b/.gitea/workflows/buildContainers.yml @@ -24,7 +24,11 @@ jobs: - name: Restore dependencies working-directory: src/Backend - run: dotnet restore DiunaBI.sln + run: | + dotnet restore DiunaBI.API/DiunaBI.API.csproj + dotnet restore DiunaBI.UI.Web/DiunaBI.UI.Web.csproj + dotnet restore DiunaBI.Plugins.Morska/DiunaBI.Plugins.Morska.csproj + dotnet restore DiunaBI.Tests/DiunaBI.Tests.csproj - name: Build solution and prepare plugins working-directory: src/Backend