From 36fde832cdd2044a5c5566647efcc874f1e23841 Mon Sep 17 00:00:00 2001 From: Don Cross Date: Fri, 22 Nov 2024 16:37:56 -0500 Subject: [PATCH] Fixed GitHub Actions yml script to handle separate MAC SDKs for x64, arm64. Starting in Rack 2.6.0, the Intel/ARM SDKs for Mac are no longer combined into a single zip file. They are now separate zip files. Updated the cross-platform build script accordingly. --- .github/workflows/build-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-plugin.yml b/.github/workflows/build-plugin.yml index 8c7ade7..b30ac72 100644 --- a/.github/workflows/build-plugin.yml +++ b/.github/workflows/build-plugin.yml @@ -58,7 +58,7 @@ jobs: - name: Get Rack-SDK run: | pushd $HOME - wget -O Rack-SDK.zip https://vcvrack.com/downloads/Rack-SDK-${{ env.rack-sdk-version }}-mac-x64%2barm64.zip + wget -O Rack-SDK.zip https://vcvrack.com/downloads/Rack-SDK-${{ env.rack-sdk-version }}-mac-${{ matrix.platform }}.zip unzip Rack-SDK.zip - name: Build plugin run: |