diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 63c42a04f..66fa53ba4 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -24,7 +24,8 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2022, ubuntu-20.04, macos-12] + # We want a mac arm64 build, and according to this https://github.com/actions/runner-images#available-images macos-14 is always arm64 + os: [windows-2022, ubuntu-20.04, macos-12, macos-14] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index b0924cfba..fa29f0bfe 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -19,7 +19,8 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2022, ubuntu-20.04, macos-12] + # We want a mac arm64 build, and according to this https://github.com/actions/runner-images#available-images macos-14 is always arm64 + os: [windows-2022, ubuntu-20.04, macos-12, macos-14] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c622602b..06a6a9214 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,8 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2022, ubuntu-20.04, macos-12, macos-13-xlarge] + # We want a mac arm64 build, and according to this https://github.com/actions/runner-images#available-images macos-14 is always arm64 + os: [windows-2022, ubuntu-20.04, macos-12, macos-14] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}