mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-11 16:27:19 +10:00
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
name: CI - Build TUI
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build TUI
|
|
runs-on: x86_64_mojave
|
|
env:
|
|
branch: ${{ github.ref }}
|
|
commiturl: ${{ github.event.head_commit.url }}${{ github.event.release.html_url }}
|
|
commitdate: ${{ github.event.head_commit.timestamp }}${{ github.event.release.published_at }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: /Library/Frameworks/Python.framework/Versions/3.10/bin/python3 Build-Binary.command --build_tui --reset_binaries --branch "${{ env.branch }}" --commit "${{ env.commiturl }}" --commit_date "${{ env.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-TUI.app.zip OpenCore-Patcher.app
|
|
- run: ./../sign-tui.sh
|
|
- name: Upload App to Artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: OpenCore-Patcher-TUI.app
|
|
path: OpenCore-Patcher-TUI.app.zip
|
|
|
|
- name: Validate OpenCore
|
|
run: ./dist/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher --validate
|