From a33b89788c1a2df9fe134f56bf1081892f95f247 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 17 Sep 2024 21:50:04 -0400 Subject: [PATCH] actually set our codesign ID --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d30306e5..78e1f40b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -538,7 +538,10 @@ jobs: fi mkdir -p -v "${gampath}" if [[ "${RUNNER_OS}" == "macOS" ]]; then - # brew OpenSSL gets picked up by PyInstaller breaking our self-compiled version + # Tell our gam.spec to use our code sign certificate + export codesign_identity="Jay Lee" + # brew OpenSSL gets picked up by PyInstaller + # breaking our self-compiled version brew uninstall --ignore-dependencies openssl export gampath=$($PYTHON -c "import os; print(os.path.realpath('$gampath'))") elif [[ "${RUNNER_OS}" == "Windows" ]]; then