Skip to content

Commit 884b9dd

Browse files
committed
Fix build script
1 parent 7e59242 commit 884b9dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/generate-apk-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
body: "## What's Changed"
3939
draft: true
4040
prerelease: false
41-
artifacts: ./PlainApp-${{ env.version_name }}.apk,./PlainApp-${{ env.version_name }}-armeabi-v7a.apk
41+
artifacts: ./PlainApp-${{ env.version_name }}-armeabi-v7a.apk,./PlainApp-${{ env.version_name }}-default.apk
4242

build-apk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ EOF
3737

3838
# Build default APK (arm64-v8a)
3939
./gradlew assembleGithubRelease || err_and_exit "assembleGithubRelease failed"
40-
BUILD_FILE="PlainApp-$(getVersionName).apk"
40+
BUILD_FILE="PlainApp-$(getVersionName)-default.apk"
4141
mv ./app/build/outputs/apk/github/release/app-github-release.apk ./$BUILD_FILE
4242

4343
# Build armeabi-v7a APK

0 commit comments

Comments
 (0)