Skip to content

Commit

Permalink
Update android-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
foxtrotdev committed Dec 3, 2024
1 parent 568818d commit 9f2a763
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
- name: Verify APK
run: ls -l app/build/outputs/apk/release/

- name: Rename APK
run: mv ${{steps.sign_release.outputs.signedReleaseFile}} app/build/outputs/apk/release/${{ github.event.repository.name }}.apk

- name: Verify APK (2)
run: ls -l app/build/outputs/apk/release/

- name: Create Release
id: create_release
uses: actions/[email protected]
Expand All @@ -58,6 +64,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: app/build/outputs/apk/release/app-universal-release-unsigned-signed.apk
asset_path: app/build/outputs/apk/release/${{ github.event.repository.name }}.apk
asset_name: '${{ github.ref_name }}.apk'
asset_content_type: application/zip

0 comments on commit 9f2a763

Please sign in to comment.