mirror of https://github.com/ppy/SDL3-CS.git
Apply review suggestions
This commit is contained in:
parent
788afa6ab1
commit
682da0bfe1
|
|
@ -71,7 +71,7 @@ jobs:
|
||||||
user_id: ${{ steps.get_uid.outputs.uid }}
|
user_id: ${{ steps.get_uid.outputs.uid }}
|
||||||
|
|
||||||
- name: Compress native directory
|
- name: Compress native directory
|
||||||
run: tar -cf native-${{ matrix.platform.name }}.tar native
|
run: tar -cf native-${{ matrix.platform.name }}.tar native/${{ matrix.platform.name }}
|
||||||
|
|
||||||
- name: Upload native artifact
|
- name: Upload native artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
@ -105,7 +105,7 @@ jobs:
|
||||||
cp External/SDL/Xcode/SDL/build/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist native/ios/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist;
|
cp External/SDL/Xcode/SDL/build/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist native/ios/SDL3.xcframework/ios-arm64_x86_64-simulator/SDL3.framework/Info.plist;
|
||||||
|
|
||||||
- name: Compress native directory
|
- name: Compress native directory
|
||||||
run: tar -cf native-ios.tar native
|
run: tar -cf native-ios.tar native/ios
|
||||||
|
|
||||||
- name: Upload native artifact
|
- name: Upload native artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
@ -166,7 +166,7 @@ jobs:
|
||||||
jar cvf $OUTPUT/SDL3AndroidBridge.jar org/libsdl/app/*.class
|
jar cvf $OUTPUT/SDL3AndroidBridge.jar org/libsdl/app/*.class
|
||||||
|
|
||||||
- name: Compress native directory
|
- name: Compress native directory
|
||||||
run: tar -cf native-android.tar native
|
run: tar -cf native-android.tar native/android
|
||||||
|
|
||||||
- name: Upload native artifact
|
- name: Upload native artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
@ -188,8 +188,6 @@ jobs:
|
||||||
needs: [ build, build-ios, build-android ]
|
needs: [ build, build-ios, build-android ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- name: Download native artifacts
|
- name: Download native artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue