Skip to content

Commit

Permalink
Recursively add jniLibs path
Browse files Browse the repository at this point in the history
  • Loading branch information
oluiscabral committed Nov 30, 2024
1 parent a347de0 commit a7567d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ jobs:
run: cargo ndk -o ./target/release/fs-storage/jniLibs --target aarch64-linux-android --target armv7-linux-androideabi --target i686-linux-android --target x86_64-linux-android build -p fs-storage --release

- name: Create JNI Libraries ZIP
run: zip jniLibs.zip ./target/release/fs-storage/jniLibs
run: |
cd target/release/fs-storage
zip -r ../../../jniLibs.zip jniLibs
cd -
- name: Release JNI Libraries ZIP
uses: ncipollo/release-action@v1
Expand Down

0 comments on commit a7567d7

Please sign in to comment.