thomas commited on
Commit ·
e8a07ca
1
Parent(s): adeb6e2
bugfix: fixed upload release asset path in andriod ci/cd
Browse files
.github/workflows/android-release.yml
CHANGED
|
@@ -109,6 +109,6 @@ jobs:
|
|
| 109 |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
| 110 |
with:
|
| 111 |
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
| 112 |
-
asset_path: ${{ env.main_project_module }}/build/outputs/apk/debug/app-debug.apk # Update this with the correct APK path
|
| 113 |
asset_name: app-release-unsigned.apk
|
| 114 |
asset_content_type: application/vnd.android.package-archive
|
|
|
|
| 109 |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
| 110 |
with:
|
| 111 |
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
| 112 |
+
asset_path: Android/${{ env.main_project_module }}/build/outputs/apk/debug/app-debug.apk # Update this with the correct APK path
|
| 113 |
asset_name: app-release-unsigned.apk
|
| 114 |
asset_content_type: application/vnd.android.package-archive
|