From 85033c644876e937dd8625ff3ea9e567ef15aa1e Mon Sep 17 00:00:00 2001 From: Oli Larkin Date: Mon, 27 Feb 2023 00:26:55 +0100 Subject: [PATCH] Add VST_SDK step --- .github/workflows/build-mac.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index 07727aa..5f222be 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -57,6 +57,16 @@ jobs: cd iPlug2/Dependencies/IPlug ./download-vst3-sdk.sh ${{env.VST3_VER}} build-validator + - name: Get VST2 SDK + shell: bash + env: + VST2_SDK: ${{secrets.VST2_SDK}} + run: | + mkdir tmp + echo $VST2_SDK | base64 -d > tmp/tmp.zip + unzip tmp/tmp.zip -d tmp + mv tmp/VST2_SDK/* iPlug2/Dependencies/IPlug/VST2_SDK + - name: Build shell: bash run: |