From 5964966a8f1962cd4920017c5f3c5583b40d1859 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Wed, 10 Jan 2024 21:44:52 +0100 Subject: [PATCH] chore: Improve CI:CD --- .github/workflows/release-app-github.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-app-github.yaml b/.github/workflows/release-app-github.yaml index 4525daa..93c2e41 100644 --- a/.github/workflows/release-app-github.yaml +++ b/.github/workflows/release-app-github.yaml @@ -39,4 +39,12 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: - files: app/build/outputs/apk/release/*.(apk|aab) + files: app/build/outputs/apk/release/*.apk + + - name: Upload APKs bundles 🚀 + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + with: + files: app/build/outputs/bundle/release/*.aab