From b83ab9acad1840bb38a196b6b86f841650da0db1 Mon Sep 17 00:00:00 2001 From: Umberto Baldi Date: Wed, 11 May 2022 18:22:08 +0200 Subject: [PATCH] try to remove python signature because of this https://github.com/pyinstaller/pyinstaller/issues/5062#issuecomment-683743556 --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d85ab5e..4ace43e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,7 +83,9 @@ jobs: - name: Build macOS if: matrix.os == 'macos-10.15' working-directory: ${{ env.MCUBOOT_PATH }}/scripts/ - run: pyinstaller --osx-entitlements-file ${{ env.IMGTOOL_PACKING_PATH }}/entitlements.plist --onefile main.py -n ${{ env.PROJECT_NAME }} + run: | + codesign --remove-signature Python + pyinstaller --osx-entitlements-file ${{ env.IMGTOOL_PACKING_PATH }}/entitlements.plist --onefile main.py -n ${{ env.PROJECT_NAME }} - name: Package if: matrix.os == 'windows-latest'