This commit is contained in:
Anuken
2020-10-09 18:35:54 -04:00
parent e4c8366a70
commit 2a7987d916
2 changed files with 7 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ deploy:
on: on:
repo: Anuken/Mindustry repo: Anuken/Mindustry
tags: true tags: true
# - provider: script #- provider: script
# script: bash update_wiki.sh # script: bash update_wiki.sh
# on: # on:
# repo: Anuken/Mindustry # repo: Anuken/Mindustry

View File

@@ -99,10 +99,12 @@ android{
keyAlias RELEASE_KEY_ALIAS keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD keyPassword RELEASE_KEY_PASSWORD
}else if(System.getenv("CI") == "true"){ }else if(System.getenv("CI") == "true"){
println file("../bekeystore.jks").absolutePath println file("../../bekeystore.jks").absolutePath
println file("../").absolutePath println file("../../bekeystore.jks").exists()
println file(".").absolutePath println (System.getenv("keystore_password").contains("h"))
storeFile = file("../bekeystore.jks") println (System.getenv("keystore_alias").contains("h"))
println (System.getenv("keystore_alias_password").contains("h"))
storeFile = file("../../bekeystore.jks")
storePassword = System.getenv("keystore_password") storePassword = System.getenv("keystore_password")
keyAlias = System.getenv("keystore_alias") keyAlias = System.getenv("keystore_alias")
keyPassword = System.getenv("keystore_alias_password") keyPassword = System.getenv("keystore_alias_password")