From 30d12a900e917e0d6cab0bd6d3f667e1ea216d79 Mon Sep 17 00:00:00 2001 From: HarelM Date: Tue, 23 Jul 2024 21:19:46 +0300 Subject: [PATCH] Upload apk artifact --- .github/workflows/build-publish.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index 99f30a4d2..301a4d510 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -100,11 +100,17 @@ jobs: PASSWORD: ${{ secrets.PASSWORD }} WORKSPACE: ${{ github.workspace }} - - name: Upload artifacts + - name: Upload aab artifacts uses: actions/upload-artifact@v4 with: name: IHM_signed_${{ needs.version.outputs.version_string }}.aab path: IsraelHiking.Web/android/app/build/outputs/bundle/release/app-release.aab + + - name: Upload apk artifacts + uses: actions/upload-artifact@v4 + with: + name: IHM_signed_${{ needs.version.outputs.version_string }}.apk + path: IsraelHiking.Web/android/app/build/outputs/apk/release/app-release.apk - name: Publish to Google Play if: ${{ github.event.inputs.publishandroid == 'true' }}