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.
This commit is contained in:
Huakun Shen 2025-01-07 00:15:42 -05:00
parent a07eb0b553
commit 9c5199c325

View File

@ -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"