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 GitHub
parent e2714627d6
commit fe1a8619ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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"