From 9c5199c325e6bbb48426f76d4b6e1e0aa5d138d8 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Tue, 7 Jan 2025 00:15:42 -0500 Subject: [PATCH] ci: update desktop publish workflow for macOS platform adjustments - Changed macOS platform version for Intel builds from 14 to 13. - Updated the platform version for universal builds from 13 to 14. - Ensured compatibility with both Arm and Intel architectures in the CI workflow. --- .github/workflows/desktop-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/desktop-publish.yml b/.github/workflows/desktop-publish.yml index 22d47bd..2bc40e0 100644 --- a/.github/workflows/desktop-publish.yml +++ b/.github/workflows/desktop-publish.yml @@ -18,9 +18,9 @@ jobs: settings: - platform: "macos-14" # for Arm based macs (M1 and above). args: "--target aarch64-apple-darwin --verbose" - - platform: "macos-14" # for Intel based macs. + - platform: "macos-13" # for Intel based macs. args: "--target x86_64-apple-darwin --verbose" - - platform: "macos-13" # for Both Arm and Intel based macs. + - platform: "macos-14" # for Both Arm and Intel based macs. args: "--target universal-apple-darwin --verbose" - platform: "ubuntu-22.04" # for Tauri v1 you could replace this with ubuntu-20.04. args: "--verbose"