Update build.gradle to use env variable storeFile

This commit is contained in:
Pieter Vander Vennet 2025-06-05 15:42:32 +02:00
parent 921863589c
commit fc597bf3c9

View file

@ -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")