Skip to content

Commit

Permalink
created user token and new gh action secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsEckart committed Aug 22, 2023
1 parent 801ca52 commit 03f1ba3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ publishing {
name = "sonatype"
url = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
credentials {
username = project.findProperty("sonatypeUsername") as String?
password = project.findProperty("sonatypePassword") as String?
username = project.findProperty("SONATYPE_TOKEN_USERNAME") as String?
password = project.findProperty("SONATYPE_TOKEN_PASSWORD") as String?
}
}
}
Expand Down Expand Up @@ -93,8 +93,8 @@ publishing {
nexusPublishing {
repositories {
sonatype {
username = project.findProperty("sonatypeUsername") as String?
password = project.findProperty("sonatypePassword") as String?
username = project.findProperty("SONATYPE_TOKEN_USERNAME") as String?
password = project.findProperty("SONATYPE_TOKEN_PASSWORD") as String?
}
}
}
Expand Down

0 comments on commit 03f1ba3

Please sign in to comment.