GHA to sign APK files using RUSEFI_ANDROID_KEYPASS
This commit is contained in:
parent
216cc9b60c
commit
0a3372a64c
|
@ -26,9 +26,19 @@ android {
|
|||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
storeFile file("../certs/rusEFI.jks")
|
||||
storePassword System.getenv("RUSEFI_ANDROID_KEYPASS")
|
||||
keyAlias "key0"
|
||||
keyPassword System.getenv("RUSEFI_ANDROID_KEYPASS")
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -55,4 +65,10 @@ dependencies {
|
|||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
||||
|
||||
testImplementation libs.junit
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
gradle.taskGraph.afterTask { task ->
|
||||
project.logger.lifecycle("Password " + System.getenv('RUSEFI_ANDROID_KEYPASS'));
|
||||
}
|
||||
*/
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue