Skip to content

Commit

Permalink
ci: use correct artifactory credentials (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
matrei authored Jan 2, 2025
1 parent 21c3b03 commit ccaf413
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ publishing {
repositories {
maven {
credentials {
username = project.findProperty('artifactoryPublishUsername') ?: ''
password = project.findProperty('artifactoryPublishPassword') ?: ''
username = System.getenv('ARTIFACTORY_USERNAME') ?: ''
password = System.getenv('ARTIFACTORY_PASSWORD') ?: ''
}
url = isGrailsPlugin ?
uri('https://repo.grails.org/grails/plugins3-snapshots-local') :
Expand Down

0 comments on commit ccaf413

Please sign in to comment.