From c9e6a09a0e5e5ef8464442cbcf1633ebc57fd044 Mon Sep 17 00:00:00 2001 From: Super12138 <70494801+Super12138@users.noreply.github.com> Date: Sun, 15 Feb 2026 08:16:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20NDK=20=E7=BC=93?= =?UTF-8?q?=E5=AD=98=E4=B8=8D=E6=98=AF=E7=BB=9D=E5=AF=B9=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/android_ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android_ci.yml b/.github/workflows/android_ci.yml index 7ee3b9e..a76ab80 100644 --- a/.github/workflows/android_ci.yml +++ b/.github/workflows/android_ci.yml @@ -21,13 +21,16 @@ jobs: with: fetch-depth: 0 - - name: set up JDK 21 + - name: Set up JDK 21 uses: actions/setup-java@v5.2.0 with: java-version: '21' distribution: 'temurin' cache: gradle + - name: Export ANDROID_HOME to env + run: echo "ANDROID_HOME=$ANDROID_HOME" >> "$GITHUB_ENV" + - name: Cache NDK id: cache-ndk uses: actions/cache@v5.0.3 @@ -65,4 +68,4 @@ jobs: uses: actions/upload-artifact@v6.0.0 with: name: Release - path: ${{ github.workspace }}/app/build/outputs/apk/release \ No newline at end of file + path: ${{ github.workspace }}/app/build/outputs/apk/release