refactor: changing signing key location

Why am I doing this to myself?
This commit is contained in:
LucasGGamerM
2023-04-01 21:19:57 -03:00
parent e7967eadc5
commit 32bfdd231a

View File

@@ -22,10 +22,10 @@ android {
if (allFilesFromDir != null) {
def keystoreFile = allFilesFromDir.first()
keystoreFile.renameTo("keystore/nightly_keystore.jks")
keystoreFile.renameTo("mastodon/keystore/nightly_keystore.jks")
}
storeFile = file("keystore/nightly_keystore.jks")
storeFile = file("mastodon/keystore/nightly_keystore.jks")
storePassword System.getenv("SIGNING_STORE_PASSWORD")
keyAlias System.getenv("SIGNING_KEY_ALIAS")
keyPassword System.getenv("SIGNING_KEY_PASSWORD")