Remove APK upload step from CI workflow and add APK check
Android / android (push) Failing after 27s

This commit is contained in:
Kirill
2026-08-19 22:47:52 +03:00
parent b82fe0f3d7
commit 0b80d2cdf6
+10 -5
View File
@@ -96,8 +96,13 @@ jobs:
test -f build/app.apk test -f build/app.apk
ls -lh build/app.apk ls -lh build/app.apk
- name: Upload APK # - name: Upload APK
uses: actions/upload-artifact@v4 # uses: actions/upload-artifact@v4
with: # with:
name: android-apk # name: android-apk
path: build/app.apk # path: build/app.apk
- name: Check APK
run: |
ls -lh build/app.apk
file build/app.apk