Build: Generate md5s in apk zips (#4335)

* Update android.yml

Gen md5s with apk

* fix typo

Damn you GitHub mobile UI!
This commit is contained in:
SolDev69 2023-07-09 11:34:40 -04:00 committed by GitHub
parent def8630c27
commit fcafb3ecfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,12 +81,16 @@ jobs:
rm -r app_pojavlauncher/src/main/assets/components/jre-new
gradle assembleDebug
mv app_pojavlauncher/build/outputs/apk/debug/app_pojavlauncher-debug.apk out/app-debug-noruntime.apk
- name: Gen md5sums
run: |
md5sum out/app-debug.apk > out/app-debug.md5
md5sum out/app-debug-noruntime.apk > out/app-debug-noruntime.md5
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: app-debug
path: out/app-debug.apk
path: out/app-debug.*
- name: Upload onto the Google Play testing track
continue-on-error: true
@ -104,4 +108,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: app-debug-noruntime
path: out/app-debug-noruntime.apk
path: out/app-debug-noruntime.*