-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
23 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,14 +13,34 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Theos | ||
uses: Randomblock1/[email protected] | ||
- 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 | ||
sparse-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 init | ||
git submodule update | ||
make package FINALPACKAGE=1 | ||
gmake package FINALPACKAGE=1 | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
|