From 862f9efe49d156a85459aa1a684d52401f0a5b00 Mon Sep 17 00:00:00 2001 From: Chris Maltby Date: Fri, 15 Mar 2024 13:01:50 +0000 Subject: [PATCH] Build Mac release on arm hardware --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c15f594b4..bf3e24c06 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,25 +10,25 @@ on: jobs: checkout_and_build: - runs-on: ubuntu-latest strategy: matrix: include: - build: mac node_version: '21.6.2' - os: macos-latest + runs-on: macos-14 - build: mac-intel node_version: '21.6.2' - os: macos-latest + runs-on: macos-14 # - build: win32 # node_version: '21.6.2' - # os: windows-latest + # runs-on: windows-latest # - build: win64 # node_version: '21.6.2' - # os: windows-latest + # runs-on: windows-latest # - build: linux # node_version: '21.6.2' - # os: ubuntu-latest + # runs-on: ubuntu-latest + container: image: cimg/node:${{ matrix.node_version }} steps: