Skip to content

Commit

Permalink
ci: fix typo in Maven release configuration
Browse files Browse the repository at this point in the history
- Relates to #47
  • Loading branch information
manusa committed Dec 11, 2021
1 parent 5983cd2 commit 39c8b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext.configurePublishing = { Project evaluatedProject ->
return
}
def delombokedSourceDir = "$buildDir/delombok"
def isRelease = version.endsWith('SNAPSHOT')
def isRelease = !version.endsWith('SNAPSHOT')
def ossrhUsername = findProperty("ossrhUsername")
def ossrhPassword = findProperty("ossrhPassword")
def releaseUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
Expand Down

0 comments on commit 39c8b2f

Please sign in to comment.