Skip to content

Commit

Permalink
Apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Sep 26, 2024
1 parent 788afa6 commit 682da0b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 682da0b

Please sign in to comment.