add dependencies to PDF builds to staging tasks (#6813)

(not certain this is necessary)
This commit is contained in:
Gavin King 2023-06-16 16:12:06 +02:00 committed by Christian Beikov
parent 82d2fc9bd7
commit 5240031226

View File

@ -241,7 +241,7 @@ task stageTopicalGuide(type: Copy) {
task stageIntroduction(type: Copy) {
group 'Release'
dependsOn ':documentation:renderIntroduction'
dependsOn ':documentation:renderIntroduction', ':documentation:renderIntroductionPdf'
from "${project( ':documentation' ).buildDir}/asciidoc/introduction"
into "${buildDir}/documentation/introduction"
@ -250,7 +250,7 @@ task stageIntroduction(type: Copy) {
task stageQL(type: Copy) {
group 'Release'
dependsOn ':documentation:renderQL'
dependsOn ':documentation:renderQL', ':documentation:renderQLPdf'
from "${project( ':documentation' ).buildDir}/asciidoc/querylanguage"
into "${buildDir}/documentation/querylanguage"