From 55d08a5dc321797f353dc777405da921b36a0a06 Mon Sep 17 00:00:00 2001 From: Gulum Date: Sat, 6 Jun 2026 19:58:52 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20DB-3=20Drift-Check=20=E2=80=94=20-c?= =?UTF-8?q?=20Release=20war=20--context=20Release=20(DbContext-Name!),=20n?= =?UTF-8?q?icht=20Build-Config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dotnet ef interpretiert -c als --context, daher 'No DbContext named Release was found' → Backend-Tests-Job rot seit DB-3. Korrekt: --configuration Release. Lokal verifiziert: Release-Build + --no-build --configuration Release → 'No changes'. Tests 140/140. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 866fa9b..2974dd0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: dotnet ef migrations has-pending-model-changes --project GerbilManagerWebAPI --startup-project GerbilManagerWebAPI - --no-build -c Release + --no-build --configuration Release - name: Tests ausfuehren run: dotnet test GerbilManager.slnx --no-build -c Release --logger "console;verbosity=normal"