Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ lintfix: ## Applies the lint changes.
$(GRADLE) spotlessApply

.PHONY: release
release: ## Upload artifacts to Sonatype Nexus.
$(GRADLE) --info publish --stacktrace --no-daemon --no-parallel
$(GRADLE) --info releaseRepository
release: ## Upload artifacts to Maven Central.
$(GRADLE) --info publishAndReleaseToMavenCentral --stacktrace --no-daemon --no-parallel --no-configuration-cache

.PHONY: releaselocal
releaselocal: ## Release artifacts to local maven repository.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ allprojects {

mavenPublishing {
val isAutoReleased = project.hasProperty("signingInMemoryKey")
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL, automaticRelease = true)
if (isAutoReleased) {
signAllPublications()
}
Expand Down