File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2525 fetch-depth : 0
2626
2727 - name : Build documentation with Dokka
28- run : ./gradlew dokkaGenerate
28+ run : ./gradlew : dokkaGenerate
2929
3030 - name : Upload documentation artifacts
3131 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -67,5 +67,10 @@ dokka {
6767}
6868
6969gradle.projectsEvaluated {
70- tasks[" dokkaGenerate" ].dependsOn(tasks[" prepareDocumentation" ])
70+ logger.lifecycle(" projectsEvaluated" )
71+ val a = rootProject.tasks[" dokkaGenerate" ]
72+ val b = tasks[" prepareDocumentation" ]
73+ logger.lifecycle(" dokkaGenerate=$a " )
74+ logger.lifecycle(" prepareDocumentation=$b " )
75+ rootProject.tasks[" dokkaGenerate" ].dependsOn(" prepareDocumentation" )
7176}
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import kotlin.reflect.full.declaredMemberProperties
1717
1818tasks.register<DefaultTask >(" prepareDocumentation" ) {
1919 doLast {
20+ logger.lifecycle(" Starting prepareDocumentation" )
2021 val mustacheFactory = DefaultMustacheFactory ()
2122
2223 // Retrieve OudsVersion.Component object and fill the table in core/Module.md with the component design versions
You can’t perform that action at this time.
0 commit comments