From 789bca7cc6fa34f52969e253bc1e4086ff95ce32 Mon Sep 17 00:00:00 2001 From: HapeLee <1321903405@qq.com> Date: Sun, 28 Sep 2025 04:18:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 789bfd249..401e2ff41 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -113,7 +113,7 @@ jobs: - name: Check Build production run: | - if ! ls $GITHUB_WORKSPACE/app/app/release/*-release.apk 1> /dev/null 2>&1; then + if ! ls $GITHUB_WORKSPACE/app/build/outputs/apk/app/release/*-release.apk 1> /dev/null 2>&1; then echo "Build production not found! Check gradle logs." exit 1 fi @@ -123,10 +123,9 @@ jobs: with: name: APKs path: | - ${{ github.workspace }}/app/app/release/*-armeabi-v7a-release.apk - ${{ github.workspace }}/app/app/release/*-arm64-v8a-release.apk - ${{ github.workspace }}/app/app/release/*-universal-release.apk - + ${{ github.workspace }}/app/build/outputs/apk/app/release/*-armeabi-v7a-release.apk + ${{ github.workspace }}/app/build/outputs/apk/app/release/*-arm64-v8a-release.apk + ${{ github.workspace }}/app/build/outputs/apk/app/release/*-universal-release.apk - name: Upload Mapping File To Artifact uses: actions/upload-artifact@v4