We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c08dcbd commit c38966cCopy full SHA for c38966c
.github/workflows/publish-release.yml
@@ -56,5 +56,5 @@ jobs:
56
export GPG_TTY=$(tty) && echo ${GPG_KEY_BASE64} | base64 --decode | gpg --fast-import --batch
57
NEW_VERSION=$(echo "${GITHUB_REF}" | cut -d "/" -f3)
58
echo "New version: ${NEW_VERSION}"
59
- ./gradlew -Pversion=${NEW_VERSION} publish
+ ./gradlew -Pversion=${NEW_VERSION} publish -i
60
build.gradle.kts
@@ -189,4 +189,8 @@ tasks {
189
project.hasProperty("signing.gnupg.keyName")
190
}
191
192
+
193
+ withType<PublishToMavenRepository> {
194
+ finalizedBy("closeAndReleaseRepository")
195
+ }
196
0 commit comments