Skip to content

Commit

Permalink
Fix release upload
Browse files Browse the repository at this point in the history
  • Loading branch information
shubertm committed Oct 25, 2024
1 parent d5346e4 commit ebe14cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}

0 comments on commit ebe14cf

Please sign in to comment.