Skip to content

Commit 97e9490

Browse files
committed
0.0.2
1 parent 1f454eb commit 97e9490

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

buildSrc/src/main/kotlin/publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ tasks {
6767
}
6868
}
6969
withType<Sign> {
70-
onlyIf { isReleaseVersion && gradle.taskGraph.hasTask("publish") }
70+
onlyIf { isReleaseVersion }
7171
}
7272
}

devops-boot-project/devops-boot-tools/devops-publish-gradle-plugin/src/main/kotlin/com/tencent/devops/DevOpsPublishPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class DevOpsPublishPlugin : Plugin<Project> {
8989
}
9090

9191
tasks.withType(Sign::class.java) {
92-
it.onlyIf { isReleaseVersion && gradle.taskGraph.hasTask(PUBLISH_TASK_PATH) }
92+
it.onlyIf { isReleaseVersion }
9393
}
9494
}
9595
}

0 commit comments

Comments
 (0)