Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dicko2 committed Aug 29, 2024
1 parent 2ebf78f commit 5e4771c
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 @@ -66,8 +66,8 @@ publishing {
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = project.hasProperty('ossrhUsername') ? ossrhUsername : "dummy"
password = project.hasProperty('ossrhPassword') ? ossrhPassword : "dummy"
username = System.getenv("MAVEN_USERNAME") ?: ossrhUsername
password = System.getenv("MAVEN_PASSWORD") ?: ossrhPassword
}
}
}
Expand Down

0 comments on commit 5e4771c

Please sign in to comment.