Update build.gradle to use env variable storeFile
This commit is contained in:
parent
921863589c
commit
fc597bf3c9
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,8 @@ android {
|
||||||
}
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
storeFile file(System.getProperty("user.home") + "/.gradle/release-key.jks")
|
// Works together with "on_release"_script in the forgejo actions
|
||||||
|
storeFile file(System.getenv("storeFile"))
|
||||||
storePassword System.getenv("storePassword")
|
storePassword System.getenv("storePassword")
|
||||||
keyAlias System.getenv("keyAlias")
|
keyAlias System.getenv("keyAlias")
|
||||||
keyPassword System.getenv("keyPassword")
|
keyPassword System.getenv("keyPassword")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue