File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5757 env :
5858 OSSRH_USER : ${{ secrets.OSSRH_USER }}
5959 OSSRH_PASSWORD : ${{ secrets.OSSRH_PASSWORD }}
60- run : ./gradlew -Psigning.gnupg.keyName=CBEF2CF0 -Psigning.gnupg.executable=gpg -Psigning.gnupg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} :radar-commons-gradle:publish
60+ run : ./gradlew -Psigning.gnupg.keyName=CBEF2CF0 -Psigning.gnupg.executable=gpg -Psigning.gnupg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} :radar-commons-gradle:publish :radar-commons-gradle:closeAndReleaseSonatypeStagingRepository
Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ val dokkaJar by tasks.registering(Jar::class) {
9090tasks.withType<GenerateMavenPom > {
9191 afterEvaluate {
9292 pom.apply {
93+ name.set(project.name)
94+ url.set(githubUrl)
9395 description.set(project.description)
9496 licenses {
9597 license {
@@ -159,7 +161,7 @@ signing {
159161}
160162
161163tasks.withType<Sign > {
162- onlyIf { gradle.taskGraph.hasTask(project.tasks[" publish " ]) }
164+ onlyIf { gradle.taskGraph.hasTask(project.tasks[" publishToSonatype " ]) }
163165 dependsOn(sourcesJar)
164166 dependsOn(dokkaJar)
165167}
You can’t perform that action at this time.
0 commit comments