Build the YouTube Reborn deb #488
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This has been created by @lillieH1000 | |
name: Build the YouTube Reborn deb | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@main | |
- name: Checkout RootHide/theos | |
uses: actions/checkout@main | |
with: | |
repository: RootHide/theos | |
ref: master | |
submodules: recursive | |
path: theos | |
- name: Checkout arichornlover/sdks | |
uses: actions/checkout@main | |
with: | |
repository: arichornlover/sdks | |
ref: main | |
sparse-checkout: iPhoneOS18.0.sdk | |
path: theos/sdks | |
- name: Checkout PoomSmart/YouTubeHeader | |
uses: actions/checkout@main | |
with: | |
repository: PoomSmart/YouTubeHeader | |
ref: main | |
path: YouTubeHeader | |
- name: Build Package | |
run: | | |
brew install make ldid | |
export THEOS=theos | |
gmake clean package FINALPACKAGE=1 | |
gmake clean package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless | |
gmake clean package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=roothide | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
path: packages/*.deb |