Fix: List APK files before upload and use correct flavor output path
Build Debug / Build Android Debug APK (push) Failing after 4m40s
Build UUVPN / Build Android APK (push) Failing after 3m2s
Build UUVPN / Cleanup old artifacts (push) Failing after 0s
Build Debug / Build iOS Debug App (push) Has been cancelled
Build UUVPN / Build iOS IPA (push) Has been cancelled
Build UUVPN / Create GitHub Release (push) Has been cancelled
Build UUVPN / Upload to TestFlight (push) Has been cancelled
Build UUVPN / Send Notification (push) Has been cancelled
Build Debug / Build Android Debug APK (push) Failing after 4m40s
Build UUVPN / Build Android APK (push) Failing after 3m2s
Build UUVPN / Cleanup old artifacts (push) Failing after 0s
Build Debug / Build iOS Debug App (push) Has been cancelled
Build UUVPN / Build iOS IPA (push) Has been cancelled
Build UUVPN / Create GitHub Release (push) Has been cancelled
Build UUVPN / Upload to TestFlight (push) Has been cancelled
Build UUVPN / Send Notification (push) Has been cancelled
This commit is contained in:
@@ -182,14 +182,21 @@ jobs:
|
|||||||
cd Android-kotlin-Code
|
cd Android-kotlin-Code
|
||||||
./gradlew assembleAlphaRelease --stacktrace
|
./gradlew assembleAlphaRelease --stacktrace
|
||||||
|
|
||||||
|
- name: List APK files
|
||||||
|
run: |
|
||||||
|
echo "Listing APK files..."
|
||||||
|
find Android-kotlin-Code/app/build/outputs/apk -name "*.apk" -type f || echo "No APK files found"
|
||||||
|
ls -la Android-kotlin-Code/app/build/outputs/apk/ || true
|
||||||
|
|
||||||
- name: Upload Android APK Artifact
|
- name: Upload Android APK Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: android-apk-${{ github.sha }}
|
name: android-apk-${{ github.sha }}
|
||||||
path: |
|
path: |
|
||||||
Android-kotlin-Code/app/build/outputs/apk/**/*.apk
|
Android-kotlin-Code/app/build/outputs/apk/alpha/debug/*.apk
|
||||||
Android-kotlin-Code/app/build/outputs/apk/**/*.json
|
Android-kotlin-Code/app/build/outputs/apk/alpha/release/*.apk
|
||||||
retention-days: 30
|
retention-days: 30
|
||||||
|
if-no-files-found: warn
|
||||||
|
|
||||||
- name: Get APK filename
|
- name: Get APK filename
|
||||||
id: apk_name
|
id: apk_name
|
||||||
|
|||||||
Reference in New Issue
Block a user