Replace subversion with git

This commit is contained in:
Bryce Hackel
2024-01-09 13:19:31 -08:00
parent 6cc3fcbf00
commit 3b9d979cfd

View File

@@ -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