Skip to content

Commit

Permalink
Check if s01 is needed for snapshots as well now..
Browse files Browse the repository at this point in the history
  • Loading branch information
Kantis committed Oct 23, 2022
1 parent 0c141ea commit a123357
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -46,7 +46,7 @@ publishing {
repositories {
maven {
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
name = "deploy"
url = if (Ci.isRelease) releasesRepoUrl else snapshotsRepoUrl
credentials {
Expand Down
2 changes: 1 addition & 1 deletion kotest-bom/build.gradle.kts
Expand Up @@ -39,7 +39,7 @@ publishing {
repositories {
maven {
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
name = "deploy"
url = if (Ci.isRelease) releasesRepoUrl else snapshotsRepoUrl
credentials {
Expand Down

0 comments on commit a123357

Please sign in to comment.