From 8a166a982430d911af2538000ae5efca50be184a Mon Sep 17 00:00:00 2001 From: deepend Date: Thu, 19 Feb 2026 13:49:14 -0700 Subject: [PATCH] Fixed the macOS x86_64 CI build pipeline by adding the missing install step (meson install -C build-macos-x86_64) immediately after compilation, so the staged binary exists before makebundle.sh runs. This resolves the Cannot find main binary: .../stage/x86_64/bin/zoitechat packaging failure path. --- .github/workflows/macos-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml index ccce5a20..708e8d09 100644 --- a/.github/workflows/macos-build.yml +++ b/.github/workflows/macos-build.yml @@ -134,6 +134,7 @@ jobs: -Dauto_features=enabled CFLAGS="-arch x86_64" LDFLAGS="-arch x86_64" meson compile -C build-macos-x86_64 + meson install -C build-macos-x86_64 - name: Stage runtime dependencies for bundling (x86_64)