Skip to content

Commit c38966c

Browse files
committed
ci: add nexus-staging plugin task
1 parent c08dcbd commit c38966c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/publish-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ jobs:
5656
export GPG_TTY=$(tty) && echo ${GPG_KEY_BASE64} | base64 --decode | gpg --fast-import --batch
5757
NEW_VERSION=$(echo "${GITHUB_REF}" | cut -d "/" -f3)
5858
echo "New version: ${NEW_VERSION}"
59-
./gradlew -Pversion=${NEW_VERSION} publish
59+
./gradlew -Pversion=${NEW_VERSION} publish -i
6060

build.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -189,4 +189,8 @@ tasks {
189189
project.hasProperty("signing.gnupg.keyName")
190190
}
191191
}
192+
193+
withType<PublishToMavenRepository> {
194+
finalizedBy("closeAndReleaseRepository")
195+
}
192196
}

0 commit comments

Comments
 (0)