Skip to content

Commit

Permalink
try to remove python signature because of this pyinstaller/pyinstalle…
Browse files Browse the repository at this point in the history
  • Loading branch information
umbynos committed May 11, 2022
1 parent 907d0f2 commit b83ab9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit b83ab9a

Please sign in to comment.