From ebe14cfec4b16a8770623583e48325a597a38127 Mon Sep 17 00:00:00 2001 From: Shubert Munthali Date: Fri, 25 Oct 2024 04:41:56 +0200 Subject: [PATCH] Fix release upload --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ba3875..97ecc56 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: amuzic - path: ./app/build/outputs/release/*.apk + path: ./app/build/outputs/apk/release/*.apk - name: Release AAB env: @@ -51,11 +51,11 @@ jobs: uses: actions/upload-artifact@v4 with: name: amuzic - path: ./app/build/outputs/release/*.aab + path: ./app/build/outputs/aab/release/*.aab - name: Create Release run: | gh release create ${{ github.ref_name }} --title "Amuzic $(echo ${{ github.ref_name }} | rev | cut -d 'v' -f 1 | rev)" --generate-notes - gh release upload ${{ github.ref_name }} ./app/build/outputs/release/amuzic.apk ./app/build/outputs/release/amuzic.aab + gh release upload ${{ github.ref_name }} ./app/build/outputs/apk/release/amuzic.apk ./app/build/outputs/aab/release/amuzic.aab env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}