chore: debugging the signing process for nightly

This commit is contained in:
LucasGGamerM
2023-04-02 13:14:14 -03:00
parent 1369756e1e
commit eacaf214e8

View File

@@ -17,14 +17,6 @@ android {
signingConfigs { signingConfigs {
nightly{ nightly{
def tmpFilePath = System.getProperty("user.home") + "/work/_temp/keystore/"
def allFilesFromDir = new File(tmpFilePath).listFiles()
if (allFilesFromDir != null) {
def keystoreFile = allFilesFromDir.first()
keystoreFile.renameTo("keystore/nightly_keystore.jks")
}
storeFile = file("keystore/nightly_keystore.jks") storeFile = file("keystore/nightly_keystore.jks")
storePassword System.getenv("SIGNING_STORE_PASSWORD") storePassword System.getenv("SIGNING_STORE_PASSWORD")
keyAlias System.getenv("SIGNING_KEY_ALIAS") keyAlias System.getenv("SIGNING_KEY_ALIAS")