mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-19 05:42:10 +00:00
Only download specific SDK
This commit is contained in:
parent
4c2f45db01
commit
7959f3d780
1 changed files with 5 additions and 2 deletions
7
.github/workflows/buildapp.yml
vendored
7
.github/workflows/buildapp.yml
vendored
|
|
@ -87,8 +87,11 @@ jobs:
|
|||
- name: Download iOS SDK
|
||||
if: steps.SDK.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
git clone --quiet https://github.com/arichorn/sdks.git
|
||||
mv sdks/iPhoneOS${{ inputs.sdk_version }}.sdk $THEOS/sdks
|
||||
git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/arichorn/sdks/
|
||||
cd sdks
|
||||
git sparse-checkout set --no-cone iPhoneOS${{ inputs.sdk_version }}.sdk
|
||||
git checkout
|
||||
mv *.sdk $THEOS/sdks
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue