Replace subversion with git
This commit is contained in:
parent
6cc3fcbf00
commit
3b9d979cfd
1 changed files with 4 additions and 1 deletions
5
.github/workflows/buildapp.yml
vendored
5
.github/workflows/buildapp.yml
vendored
|
|
@ -78,7 +78,10 @@ jobs:
|
||||||
- name: Download iOS 16.2 SDK
|
- name: Download iOS 16.2 SDK
|
||||||
if: steps.SDK.outputs.cache-hit != 'true'
|
if: steps.SDK.outputs.cache-hit != 'true'
|
||||||
run: |
|
run: |
|
||||||
svn checkout -q https://github.com/arichorn/sdks/trunk/iPhoneOS16.2.sdk
|
git clone -n --depth=1 --filter=tree:0 https://github.com/arichorn/sdks/
|
||||||
|
cd sdks
|
||||||
|
git sparse-checkout set --no-cone iPhoneOS16.2.sdk
|
||||||
|
git checkout
|
||||||
mv *.sdk $THEOS/sdks
|
mv *.sdk $THEOS/sdks
|
||||||
env:
|
env:
|
||||||
THEOS: ${{ github.workspace }}/theos
|
THEOS: ${{ github.workspace }}/theos
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue