Skip to content

Commit

Permalink
Fix ossrh credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianVennen committed Jan 9, 2025
1 parent 1ce2877 commit 5ef3cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ publishing {
def snapshotRepo = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
url = isReleaseVersion ? releaseRepo : snapshotRepo
credentials {
username = project.hasProperty('ossrhUsername') ? ossrhUsername : "Unknown user"
password = project.hasProperty('ossrhPassword') ? ossrhPassword : "Unknown password"
username = findProperty('OSSRH_USERNAME')
password = findProperty('OSSRH_PASSWORD')
}
}
}
Expand Down

0 comments on commit 5ef3cd3

Please sign in to comment.