Render and stage migration-guide to be published to the doc server along with other the other documentation

This commit is contained in:
Steve Ebersole 2022-03-08 21:16:53 -06:00
parent 1fe1110f0b
commit d4f4d09a0c
1 changed files with 10 additions and 0 deletions

View File

@ -255,6 +255,16 @@ task stageUserGuide(type: Copy) {
into "${buildDir}/documentation/userguide"
}
task stageMigrationGuide(type: Copy) {
group 'Release'
dependsOn ':documentation:buildDocsForPublishing'
from "${project( ':documentation' ).buildDir}/asciidoc/migration-guide"
into "${buildDir}/documentation/migration-guide"
}
/**
* Assembles all documentation into the {buildDir}/documentation directory.
*