updated to use credentials from the environment

This commit is contained in:
Sxtanna 2020-07-28 14:06:51 -04:00
parent 8f9b999e5a
commit 9ef5cedfd6

View File

@ -85,8 +85,8 @@ publishing {
url = uri("https://repo.extendedclip.com/content/repositories/public/") url = uri("https://repo.extendedclip.com/content/repositories/public/")
credentials { credentials {
username = System.getProperty("JENKINS_USER") username = System.getenv("JENKINS_USER")
password = System.getProperty("JENKINS_PASS") password = System.getenv("JENKINS_PASS")
} }
} }
} }