From bd7e840a5700ddefb5ef1f22771cc5555000f777 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 26 Jan 2026 20:00:59 -0800 Subject: [PATCH] Fix x64 macOS build bundling wrong architecture binaries Set YAAK_TARGET_ARCH before npm run bootstrap so vendor scripts download the correct x64 binaries instead of arm64 ones. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69f79149..c51ad314 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,6 +89,8 @@ jobs: - run: npm ci - run: npm run bootstrap + env: + YAAK_TARGET_ARCH: ${{ matrix.yaak_arch }} - run: npm run lint - name: Run JS Tests run: npm test