From 5c8b69e8b7b16bb1d89eed3f1dc717e8383f131f Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 22 May 2024 21:08:58 -0400 Subject: [PATCH] actions: move PyInstaller back to latest to see what happens --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9acf74d..7b27b921 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -498,15 +498,15 @@ jobs: cd pyinstaller export latest_release=$(git tag --list | grep -v dev | grep -v rc | sort -Vr | head -n1) #V6.0.0 causes errors on staticx - if [[ "${staticx}" == "yes" ]]; then - git checkout "v5.13.2" - elif [[ "${RUNNER_OS}" == "Windows" ]]; then - git checkout "v5.13.2" - elif [[ "${RUNNER_OS}" == "macOS" ]]; then - git checkout "v5.13.2" - else - git checkout "${latest_release}" - fi + #if [[ "${staticx}" == "yes" ]]; then + # git checkout "v5.13.2" + #elif [[ "${RUNNER_OS}" == "Windows" ]]; then + # git checkout "v5.13.2" + #elif [[ "${RUNNER_OS}" == "macOS" ]]; then + # git checkout "v5.13.2" + #else + git checkout "${latest_release}" + #fi # remove pre-compiled bootloaders so we fail if bootloader compile fails rm -rvf PyInstaller/bootloader/*-*/* cd bootloader