Commit 4b4bc86 1 parent 4d38600 commit 4b4bc86 Copy full SHA for 4b4bc86
File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 68
68
tag_name : ${{ steps.tagger.outputs.tag }}
69
69
name : ${{ steps.tagger.outputs.tag }}
70
70
generate_release_notes : true
71
- files : app/build/outputs/apk/foss/beta/*.apk
71
+ files : |
72
+ app/build/outputs/apk/foss/beta/*.apk
73
+ app-wear/build/outputs/apk/foss/beta/*.apk
72
74
env :
73
75
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
74
76
80
82
tag_name : ${{ steps.tagger.outputs.tag }}
81
83
name : ${{ steps.tagger.outputs.tag }}
82
84
generate_release_notes : true
83
- files : app/build/outputs/apk/foss/release/*.apk
85
+ files : |
86
+ app/build/outputs/apk/foss/release/*.apk
87
+ app-wear/build/outputs/apk/foss/release/*.apk
84
88
env :
85
89
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
86
90
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ android {
90
90
val variantName: String = variantOutputImpl.name
91
91
92
92
if (listOf (" release" , " beta" ).any { variantName.toLowerCase().contains(it) }) {
93
- val outputFileName = ProjectConfig .packageName +
93
+ val outputFileName = ProjectConfig .packageName + " -WEAROS " +
94
94
" -v${defaultConfig.versionName} -${defaultConfig.versionCode} " +
95
95
" -${variantName.toUpperCase()} -${lastCommitHash()} .apk"
96
96
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ object ProjectConfig {
17
17
const val major = 2
18
18
const val minor = 0
19
19
const val patch = 0
20
- const val build = 0
20
+ const val build = 1
21
21
22
22
const val name = " ${major} .${minor} .${patch} -rc${build} "
23
23
const val code = major * 1000000 + minor * 10000 + patch * 100 + build
You can’t perform that action at this time.
0 commit comments