From d1a6637f08153030ebfb59e6a34cfd7018f7faf2 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 18 Dec 2025 11:34:43 -0600 Subject: [PATCH] fix(ci): copy test DLLs to expected location for test.sh --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1515ab1436..480b768aa4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,6 +88,9 @@ jobs: mkdir -p _tests/bin cp _output/net8.0/linux-x64/publish/Radarr _tests/bin/ chmod +x _tests/bin/Radarr + # Copy test DLLs to where test.sh expects them + cp _tests/net8.0/linux-x64/publish/*.dll _tests/ + cp _tests/net8.0/linux-x64/publish/*.json _tests/ 2>/dev/null || true find _tests -name "Radarr.Test.Dummy" -exec chmod a+x {} \; - name: Test with coverage