diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d0788df..214ebe9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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