name: CI - Build wxPython on: push: workflow_dispatch: release: types: [published] jobs: build: name: Build wxPython runs-on: x86_64_mojave env: branch: ${{ github.event.ref }} commiturl: ${{ github.event.head_commit.url }} commitdate: ${{ github.event.head_commit.timestamp }} steps: - uses: actions/checkout@v3 - run: python3 create_offline_build.py - run: hdiutil create ./tmp.dmg -megabytes 32000 -format UDZO -ov -volname "payloads" -fs HFS+ -srcfolder ./payloads -passphrase password -encryption - 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; ditto -c -k --sequesterRsrc --keepParent OpenCore-Patcher.app ../OpenCore-Patcher-wxPython.app.zip - run: ./../sign-wxpython.sh - run: packagesbuild ./payloads/InstallPackage/AutoPkg-Assets-Setup.pkgproj - run: mv ./OpenCore-Patcher-wxPython.app.zip ./OpenCore-Patcher-GUI.app.zip - name: Upload App to Artifacts uses: actions/upload-artifact@v3 with: name: OpenCore-Patcher.app (GUI) path: OpenCore-Patcher-GUI.app.zip - name: Upload Package to Artifacts uses: actions/upload-artifact@v3 with: name: AutoPkg-Assets.pkg path: ./dist/AutoPkg-Assets.pkg - name: Upload Binary to Release if: github.event_name == 'release' uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: OpenCore-Patcher-GUI.app.zip tag: ${{ github.ref }} file_glob: true - name: Upload Package to Release if: github.event_name == 'release' uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ./dist/AutoPkg-Assets.pkg tag: ${{ github.ref }} file_glob: true