Skip to content

Commit

Permalink
ci: fix path case error
Browse files Browse the repository at this point in the history
  • Loading branch information
Zvicii committed Jan 4, 2024
1 parent 3f48d25 commit fb5bfa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ jobs:
- run: tar -xzf OpenSSL_3.2.0_armeabi-v7a.tar.gz
- run: cargo ndk -t arm64-v8a -o ./jniLibs build --release
env:
OPENSSL_LIB_DIR: ${{ github.workspace }}/OpenSSL_3.2.0_arm64-v8a/lib
OPENSSL_INCLUDE_DIR: ${{ github.workspace }}/OpenSSL_3.2.0_arm64-v8a/include
OPENSSL_LIB_DIR: ${{ github.workspace }}/openssl_3.2.0_arm64-v8a/lib
OPENSSL_INCLUDE_DIR: ${{ github.workspace }}/openssl_3.2.0_arm64-v8a/include
- run: cargo ndk -t armeabi-v7a -o ./jniLibs build --release
env:
OPENSSL_LIB_DIR: ${{ github.workspace }}/OpenSSL_3.2.0_armeabi-v7a/lib
OPENSSL_INCLUDE_DIR: ${{ github.workspace }}/OpenSSL_3.2.0_armeabi-v7a/include
OPENSSL_LIB_DIR: ${{ github.workspace }}/openssl_3.2.0_armeabi-v7a/lib
OPENSSL_INCLUDE_DIR: ${{ github.workspace }}/openssl_3.2.0_armeabi-v7a/include
- uses: actions/upload-artifact@v4
with:
name: android-universal
Expand Down

0 comments on commit fb5bfa5

Please sign in to comment.