HHH-14083 add ciRelease dependency to bintray upload
This commit is contained in:
parent
4cf9591501
commit
f64f0bc91b
|
@ -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] ) {
|
||||
group = "Release"
|
||||
description = "Adds a commit for the released version and push the changes to github"
|
||||
|
|
Loading…
Reference in New Issue