Sign CI builds

This commit is contained in:
Neil Alexander 2022-10-30 00:27:23 +01:00
parent a0e010992e
commit 24573625a4
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944
3 changed files with 22 additions and 4 deletions

View file

@ -17,11 +17,27 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
create("yggdrasil") {
// You need to specify either an absolute path or include the
// keystore file in the same directory as the build.gradle file.
storeFile = file("gha.jks")
storePassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
keyAlias = "yggdrasil-android"
keyPassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
yggdrasil {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig = signingConfigs.getByName("yggdrasil")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@ -42,4 +58,4 @@ dependencies {
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
}