File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6262
6363 - name : Find APK file
6464 run : |
65- apk_path=$(find ./app/build/outputs/apk/release -name "cidemo-release-*- *.apk" | head -n 1)
65+ apk_path=$(find ./app/build/outputs/apk/release -name "cidemo-*.apk" | head -n 1)
6666 echo "apk_path=$apk_path" >> $GITHUB_ENV
6767
6868 - name : Upload Release Asset APK
7777
7878 - name : Find AAB file
7979 run : |
80- aab_path=$(find ./app/build/outputs/bundle/release -name "cidemo-release-*- *.aab" | head -n 1)
80+ aab_path=$(find ./app/build/outputs/bundle/release -name "cidemo-*.aab" | head -n 1)
8181 echo "aab_path=$aab_path" >> $GITHUB_ENV
8282
8383 - name : Upload Release Asset AAB
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ android {
6969 .forEach { output ->
7070 val timestamp = SimpleDateFormat (" yyyyMMdd-HHmmss" ).format(Date ())
7171 val outputFileName =
72- " cidemo-${variant.name } -${variant.versionName} - $timestamp .apk"
72+ " cidemo-${variant.versionName } -$timestamp - $ {variant.name} .apk"
7373 output.outputFileName = outputFileName
7474 }
7575 }
You can’t perform that action at this time.
0 commit comments