Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit ccaf413

Browse files
authored
ci: use correct artifactory credentials (#182)
1 parent 21c3b03 commit ccaf413

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gradle/publishing.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ publishing {
6161
repositories {
6262
maven {
6363
credentials {
64-
username = project.findProperty('artifactoryPublishUsername') ?: ''
65-
password = project.findProperty('artifactoryPublishPassword') ?: ''
64+
username = System.getenv('ARTIFACTORY_USERNAME') ?: ''
65+
password = System.getenv('ARTIFACTORY_PASSWORD') ?: ''
6666
}
6767
url = isGrailsPlugin ?
6868
uri('https://repo.grails.org/grails/plugins3-snapshots-local') :

0 commit comments

Comments
 (0)