Portfolio User commited on
Commit
26ea80b
·
1 Parent(s): ea0c273

fix: update APK upload path to recursive search

Browse files
Files changed (1) hide show
  1. .github/workflows/build-apk.yml +6 -1
.github/workflows/build-apk.yml CHANGED
@@ -36,8 +36,13 @@ jobs:
36
  run: |
37
  yes | flet build apk android_build_package --project "MediAgent" --org "com.mediagent" --no-rich-output --yes
38
 
 
 
 
 
 
39
  - name: Upload APK
40
  uses: actions/upload-artifact@v4
41
  with:
42
  name: mediagent-android-app
43
- path: build/apk/*.apk
 
36
  run: |
37
  yes | flet build apk android_build_package --project "MediAgent" --org "com.mediagent" --no-rich-output --yes
38
 
39
+ - name: List files for debugging
40
+ run: |
41
+ find . -name "*.apk"
42
+ ls -R
43
+
44
  - name: Upload APK
45
  uses: actions/upload-artifact@v4
46
  with:
47
  name: mediagent-android-app
48
+ path: "**/*.apk"