Skip to content

Commit

Permalink
GH-126: added missing Nexus plugin credentials to correctly perform r…
Browse files Browse the repository at this point in the history
…eleases.
  • Loading branch information
sskorol committed May 21, 2022
1 parent 585fbbf commit 95ddfda
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,12 @@ publishing {

nexusPublishing {
repositories {
sonatype()
sonatype {
val osshUsername = System.getenv("OSSH_USERNAME") ?: ""
val osshPassword = System.getenv("OSSH_PASSWORD") ?: ""
username.set(osshUsername)
password.set(osshPassword)
}
}
}

Expand Down

0 comments on commit 95ddfda

Please sign in to comment.