From bb578dab23224c9686a1037abc5233f7b88fa888 Mon Sep 17 00:00:00 2001 From: Kavish Devar Date: Sun, 26 Apr 2026 00:43:09 +0530 Subject: [PATCH] ci: upload artifacts separately --- .github/workflows/ci-android.yml | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-android.yml b/.github/workflows/ci-android.yml index a186f77..f34c57e 100644 --- a/.github/workflows/ci-android.yml +++ b/.github/workflows/ci-android.yml @@ -55,8 +55,28 @@ jobs: run: echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v4 with: - name: release-artifacts - path: release/* + name: apk-release + path: release/*release.apk + + - uses: actions/upload-artifact@v4 + with: + name: apk-debug + path: release/*debug.apk + + - uses: actions/upload-artifact@v4 + with: + name: root-module-release + path: release/*release.zip + + - uses: actions/upload-artifact@v4 + with: + name: root-module-debug + path: release/*debug.zip + + - uses: actions/upload-artifact@v4 + with: + name: relase-bundle + path: release/*.aab release: if: github.event_name == 'push'