From 75c2a5c55b9364c8ee55fd1deb051f2cc7c89b3d Mon Sep 17 00:00:00 2001 From: Kartik Soneji Date: Mon, 6 Jan 2025 21:51:19 +0530 Subject: [PATCH] Fix CI runner images to build macos `m1` and `intel` versions properly (#360) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9a76d6..e00a15e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: - windows-latest - buildjet-16vcpu-ubuntu-2004 - macos-latest - - macos-14 + - macos-latest-large # intel runs-on: ${{ matrix.os }} @@ -49,7 +49,7 @@ jobs: binary_path="metaboss-windows-latest${binary_extension}" fi if [[ "${RUNNER_OS}" == "macOS" ]]; then - if [[ "${MATRIX_OS}" == "macos-14" ]]; then + if [[ "${MATRIX_OS}" == "macos-latest" ]]; then binary_path="metaboss-macos-m1-latest" else binary_path="metaboss-macos-intel-latest"