From 3cd5468ef94a14bbb4727afd70dfd972dee939b4 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Tue, 14 Apr 2026 13:50:58 +0800 Subject: [PATCH] fix(ci): use correct android release artifact --- .github/workflows/build-android.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index ee5f81662..1921d0bbf 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -135,5 +135,4 @@ jobs: prerelease: true tag_name: mobile/v${{ steps.version.outputs.APP_VERSION }} body_path: ${{ steps.release_notes.outputs.body_path }} - # .aab cannot be installed directly on your Android Emulator or device. - files: ${{ github.workspace }}/build.apk + files: ${{ format('{0}/build.{1}', github.workspace, github.event.inputs.profile == 'production' && 'aab' || 'apk') }}