Skip to content

Commit 66792ef

Browse files
committed
Add github variant for github actions
1 parent 6378660 commit 66792ef

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

app/build.gradle

+15-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ android {
1313
vectorDrawables.useSupportLibrary = true
1414
}
1515
signingConfigs {
16+
github {
17+
try {
18+
storeFile file("../v2er.jks")
19+
storePassword "v2er.app"
20+
keyAlias "v2er"
21+
keyPassword "v2er.app"
22+
} catch (ex) {
23+
throw ex.printStackTrace()
24+
}
25+
}
26+
1627
release {
1728
try {
1829
storeFile file("../ghui.jks")
@@ -26,9 +37,10 @@ android {
2637
}
2738

2839
buildTypes {
29-
// debug {
30-
// signingConfig signingConfigs.release
31-
// }
40+
github {
41+
signingConfig signingConfigs.github
42+
}
43+
3244
release {
3345
minifyEnabled false // False for fix of a lot crash in release
3446
// shrinkResources true

v2er.jks

2.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)