From b739b311a807a3289ae89055890e67a5cf77236f Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Thu, 5 May 2022 15:57:22 -0600 Subject: [PATCH] CI: Re-enable commit info Disabled previously due to parsing issues with PyInstaller --- .github/workflows/build-app-wxpython.yml | 1 + .github/workflows/build-app.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build-app-wxpython.yml b/.github/workflows/build-app-wxpython.yml index 87ade3834..8f3dc2acf 100644 --- a/.github/workflows/build-app-wxpython.yml +++ b/.github/workflows/build-app-wxpython.yml @@ -18,6 +18,7 @@ jobs: - uses: actions/checkout@v3 - run: python3 create_offline_build.py - run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pyinstaller OpenCore-Patcher-GUI.spec + - run: python3 ./payloads/binary.py $branch $commiturl $commitdate - run: 'codesign -s "Developer ID Application: Mykola Grymalyuk (S74BDJXQMD)" -v --force --deep --timestamp --entitlements ./payloads/entitlements.plist -o runtime "dist/OpenCore-Patcher.app"' - run: cd dist; zip -r ../OpenCore-Patcher-wxPython.app.zip OpenCore-Patcher.app - run: ./../sign-wxpython.sh diff --git a/.github/workflows/build-app.yml b/.github/workflows/build-app.yml index 34dcc5bef..226203808 100644 --- a/.github/workflows/build-app.yml +++ b/.github/workflows/build-app.yml @@ -18,6 +18,7 @@ jobs: - uses: actions/checkout@v3 - run: python3 create_offline_build.py - run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pyinstaller OpenCore-Patcher.spec + - run: python3 ./payloads/binary.py $branch $commiturl $commitdate - run: ./after_pyinstaller.sh - run: 'codesign -s "Developer ID Application: Mykola Grymalyuk (S74BDJXQMD)" -v --force --deep --timestamp --entitlements ./payloads/entitlements.plist -o runtime "dist/OpenCore-Patcher.app"' - run: cd dist; zip -r ../OpenCore-Patcher-TUI.app.zip OpenCore-Patcher.app