From fc972b04f7bb731c346be0df925e728b3dfe9a36 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jul 2024 16:10:40 -0700 Subject: [PATCH] Oops, fix arch --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 11be5188..540ecb9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,10 +18,10 @@ jobs: include: - platform: 'macos-latest' # for Arm-based macs (M1 and above). args: '--target aarch64-apple-darwin' - node_arch: 'x64' + node_arch: 'arm64' - platform: 'macos-latest' # for Intel-based macs. args: '--target x86_64-apple-darwin' - node_arch: 'arm64' + node_arch: 'x64' - platform: 'ubuntu-22.04' # for Tauri v1, you could replace this with ubuntu-20.04. args: '' node_arch: 'x64'