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 24, 2024
1 parent 892496a commit d5346e4
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 @@ -37,7 +37,7 @@ jobs:
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: amuzic-release
name: amuzic
path: ./app/build/outputs/release/*.apk

- name: Release AAB
Expand All @@ -50,12 +50,12 @@ jobs:
- name: Upload AAB
uses: actions/upload-artifact@v4
with:
name: amuzic-release
name: amuzic
path: ./app/build/outputs/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/*.apk ./app/build/outputs/release/*.aab
gh release upload ${{ github.ref_name }} ./app/build/outputs/release/amuzic.apk ./app/build/outputs/release/amuzic.aab
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d5346e4

Please sign in to comment.