Apply review suggestions

This commit is contained in:
Dan Balasescu 2024-09-26 18:21:25 +09:00
parent 788afa6ab1
commit 682da0bfe1
No known key found for this signature in database
1 changed files with 3 additions and 5 deletions

View File

@ -71,7 +71,7 @@ jobs:
user_id: ${{ steps.get_uid.outputs.uid }}
- 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
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;
- name: Compress native directory
run: tar -cf native-ios.tar native
run: tar -cf native-ios.tar native/ios
- name: Upload native artifact
uses: actions/upload-artifact@v4
@ -166,7 +166,7 @@ jobs:
jar cvf $OUTPUT/SDL3AndroidBridge.jar org/libsdl/app/*.class
- name: Compress native directory
run: tar -cf native-android.tar native
run: tar -cf native-android.tar native/android
- name: Upload native artifact
uses: actions/upload-artifact@v4
@ -188,8 +188,6 @@ jobs:
needs: [ build, build-ios, build-android ]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Download native artifacts
uses: actions/download-artifact@v4