HHH-14083 add ciRelease dependency to bintray upload
This commit is contained in:
parent
766ed3f2bf
commit
34930bf0f0
|
@ -299,6 +299,14 @@ task changeLogFile( dependsOn: [releaseChecks] ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rootProject.subprojects.each { Project subProject ->
|
||||||
|
if ( !this.name.equals( subProject.name ) ) {
|
||||||
|
if ( subProject.tasks.findByName( 'release' ) ) {
|
||||||
|
this.tasks.release.dependsOn( subProject.tasks.release )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
task addVersionCommit( dependsOn: [changeLogFile] ) {
|
task addVersionCommit( dependsOn: [changeLogFile] ) {
|
||||||
group = "Release"
|
group = "Release"
|
||||||
description = "Adds a commit for the released version and push the changes to github"
|
description = "Adds a commit for the released version and push the changes to github"
|
||||||
|
|
Loading…
Reference in New Issue