From 7f8e79fcc68cf64051abbf8471cbbf22607e04c8 Mon Sep 17 00:00:00 2001 From: Michael Dewberry Date: Tue, 8 Aug 2023 12:12:43 -0400 Subject: [PATCH] Re-fetch Rack SDK before building on Windows/Linux --- .github/workflows/build-plugin.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-plugin.yaml b/.github/workflows/build-plugin.yaml index 8411f7d..513edb8 100644 --- a/.github/workflows/build-plugin.yaml +++ b/.github/workflows/build-plugin.yaml @@ -59,7 +59,9 @@ jobs: run: | export PLUGIN_DIR=$GITHUB_WORKSPACE pushd ${{ env.rack-plugin-toolchain-dir }} - sed -i 's/RACK_SDK_VERSION \:\= 2.3.0/RACK_SDK_VERSION \:\= ${{ env.rack-sdk-version }}/' Makefile + sed -i 's/\(RACK_SDK_VERSION \:\= \)[0-9\.]\+$/\1${{ env.rack-sdk-version }}/' Makefile + make rack-sdk-clean + make rack-sdk-${{ matrix.platform }} make plugin-build-${{ matrix.platform }} - name: Upload artifact uses: actions/upload-artifact@v3