From 693b1be98a37d52c5402a5d47ae8bdb79bb7027f Mon Sep 17 00:00:00 2001 From: Dylan Nielson Date: Wed, 6 Nov 2024 16:08:24 -0500 Subject: [PATCH] explicitly set python path --- .github/workflows/build_executables.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_executables.yml b/.github/workflows/build_executables.yml index e8c18dc..a9a08ab 100644 --- a/.github/workflows/build_executables.yml +++ b/.github/workflows/build_executables.yml @@ -117,6 +117,7 @@ jobs: if lipo -info $(which python3) | grep -q "Architectures in the fat file"; then lipo -info $(which python3) echo "Python is a fat binary." + export PATH=/Users/runner/hostedtoolcache/Python/3.10.11/arm64/bin:$PATH else echo "Python is NOT a fat binary." exit 1 # Optional: Exit with error if you require a fat binary