This repository has been archived by the owner on Feb 19, 2025. It is now read-only.
Merge pull request #30 from leminlimez/trollstore-support #2
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
name: Build | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Checkout theos/theos | |
uses: actions/checkout@main | |
with: | |
repository: theos/theos | |
ref: master | |
submodules: recursive | |
path: theos | |
- name: Checkout theos/sdks | |
uses: actions/checkout@main | |
with: | |
repository: theos/sdks | |
ref: master | |
nugget-checkout: iPhoneOS16.5.sdk | |
path: theos/sdks | |
- name: Ensure main utils are installed | |
uses: dhinakg/procursus-action@main | |
with: | |
packages: coreutils make xz ldid | |
- name: Build | |
run: | | |
export THEOS=theos | |
git submodule update --init | |
bash get_libraries.sh | |
bash ipabuild.sh | |
- name: Upload artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: artifact | |
path: packages/*.ipa |