From 9a67a07f0ed310ec7ef1d1a790920563491e926c Mon Sep 17 00:00:00 2001 From: Yifei Kong Date: Wed, 17 Apr 2024 20:44:12 +0800 Subject: [PATCH] Fix macOS path for release --- .github/workflows/build-and-test-make.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test-make.yml b/.github/workflows/build-and-test-make.yml index ac43efe6..6f5174cf 100644 --- a/.github/workflows/build-and-test-make.yml +++ b/.github/workflows/build-and-test-make.yml @@ -365,7 +365,7 @@ jobs: - name: Reconfigure statically if: startsWith(github.ref, 'refs/tags/') run: | - ./configure --prefix=${{ runner.temp }}/install --enable-static + ./configure LDFLAGS="-L$(brew --prefix zstd)/lib" CPPFLAGS="-I$(brew --prefix zstd)/include" --prefix=${{ runner.temp }}/install --enable-static - name: Rebuild statically if: startsWith(github.ref, 'refs/tags/')