From a07eb0b553a0bf8f702d031057a7e79904f8ad33 Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Tue, 7 Jan 2025 00:05:18 -0500 Subject: [PATCH] ci: update desktop publish workflow for macOS compatibility - Changed macOS platform version from 14 to 13 for universal builds. - Commented out the OpenSSL environment variable setup in the CI workflow. - Minor adjustments to the installation steps for improved clarity. --- .github/workflows/desktop-publish.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/desktop-publish.yml b/.github/workflows/desktop-publish.yml index ee836fd..22d47bd 100644 --- a/.github/workflows/desktop-publish.yml +++ b/.github/workflows/desktop-publish.yml @@ -20,7 +20,7 @@ jobs: args: "--target aarch64-apple-darwin --verbose" - platform: "macos-14" # for Intel based macs. args: "--target x86_64-apple-darwin --verbose" - - platform: "macos-14" # for Both Arm and Intel based macs. + - platform: "macos-13" # 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" @@ -43,10 +43,8 @@ jobs: if: matrix.settings.platform == 'macos-14' run: | brew install protobuf - - name: Set up OpenSSL - run: | brew install openssl - echo "OPENSSL_DIR=$(brew --prefix openssl)" >> $GITHUB_ENV + # echo "OPENSSL_DIR=$(brew --prefix openssl)" >> $GITHUB_ENV - name: Install Protobuf (Ubuntu) if: matrix.settings.platform == 'ubuntu-22.04' run: |