From f29faa50024c22828554ec80b93571d599840cc6 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Fri, 17 Jul 2026 18:50:25 -0400 Subject: [PATCH] Move release build to end of content test action Move the attempt to build against content using the release configuration to the last step of the workflow, so that tests are still run to look for more serious errors when an unavoidable warning exists in content. --- .github/workflows/test-content.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-content.yml b/.github/workflows/test-content.yml index 2bdd0c06291..d9476ba6253 100644 --- a/.github/workflows/test-content.yml +++ b/.github/workflows/test-content.yml @@ -40,8 +40,6 @@ jobs: run: cp RobustToolbox/global.json . - name: Install dependencies run: dotnet restore - - name: Build (Release) - run: dotnet build --configuration Release --no-restore /m - name: Build (Debug) run: dotnet build --configuration DebugOpt --no-restore /m - name: Content.Tests @@ -59,3 +57,5 @@ jobs: name: nunit3-results path: test_results/* retention-days: 7 + - name: Build (Release) + run: dotnet build --configuration Release --no-restore /m