From 7bb42e091a95eae4d7a1a089a419c78f4e57caea Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Mon, 2 Feb 2026 13:27:38 +0100 Subject: [PATCH] Simplify GitHub Actions workflow by separating the build step from testing and packing operations. --- .github/workflows/copilot-setup-steps.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 8d96b036c..351afc07a 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -18,5 +18,5 @@ jobs: with: dotnet-version: "10.0.x" - - name: Build, test, and pack - run: ./build.cmd Compile Test Pack + - name: Build + run: ./build.cmd Compile