From f04f116049aa3d57da9bb5c69224107d5aeeb46d Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Wed, 8 Apr 2026 14:08:27 -0500 Subject: [PATCH] fix: fail fast when bundled copilot is missing Stop the Mac Catalyst release workflow immediately if the bundled copilot CLI is absent, so CI doesn't continue packaging a broken artifact with a misleading late codesign error. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/release-apps.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-apps.yml b/.github/workflows/release-apps.yml index 646834581..0dd0701f2 100644 --- a/.github/workflows/release-apps.yml +++ b/.github/workflows/release-apps.yml @@ -292,7 +292,8 @@ jobs: --options runtime --timestamp \ "$COPILOT_BIN" else - echo "Warning: copilot binary not found at $COPILOT_BIN" + echo "::error::Bundled copilot binary not found at $COPILOT_BIN" + exit 1 fi # Re-sign all dylibs (inside-out)