mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-08-06 11:30:05 +00:00
Update build-apk.yml
This commit is contained in:
parent
a4c97b9379
commit
c4fa8c2637
1 changed files with 7 additions and 2 deletions
9
.github/workflows/build-apk.yml
vendored
9
.github/workflows/build-apk.yml
vendored
|
|
@ -14,7 +14,12 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
submodules: false
|
||||
|
||||
- name: Initialize submodules manually
|
||||
run: |
|
||||
git submodule init MPVKit
|
||||
git submodule update --depth=1 MPVKit
|
||||
|
||||
- name: Set up JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
|
|
@ -40,7 +45,7 @@ jobs:
|
|||
|
||||
- name: Rename APK
|
||||
run: |
|
||||
APK_PATH=$(find composeApp/build/outputs/apk -name "*.apk" | head -1)
|
||||
APK_PATH=$(find composeApp/build/outputs/apk -name "*.apk" | head -1 )
|
||||
if [ -n "$APK_PATH" ]; then
|
||||
cp "$APK_PATH" composeApp/build/outputs/apk/NuvioMobile-custom-debug.apk
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue