diff --git a/.github/workflows/android_ci.yml b/.github/workflows/android_ci.yml index 20eeb20..8810939 100644 --- a/.github/workflows/android_ci.yml +++ b/.github/workflows/android_ci.yml @@ -23,6 +23,9 @@ jobs: java-version: '21' distribution: 'temurin' cache: gradle + + - name: Install NDK 27.0.12077973 + run: echo "y" | sudo ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --install 'ndk;27.0.12077973' - name: Grant execute permission for gradlew run: chmod +x gradlew @@ -38,14 +41,11 @@ jobs: echo ${{ secrets.SIGNING_KEY }} | base64 --decode > ${{ github.workspace }}/key.jks fi - - name: Cache NDK - uses: actions/cache@v4.2.3 - with: - path: ${ANDROID_HOME}/ndk/27.0.12077973 - key: ndk-cache - - - name: Install NDK - run: echo "y" | sudo ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --install 'ndk;27.0.12077973' + # - name: Cache NDK + # uses: actions/cache@v4.2.3 + # with: + # path: ${ANDROID_HOME}/ndk/27.0.12077973 + # key: ndk-cache - name: Build with Gradle run: ./gradlew assembleRelease