File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ private fun JobBuilder<*>.deployDocs() {
80
80
uses(action = ActionsSetupGradle ())
81
81
run (
82
82
name = " Generate API docs" ,
83
- command = " ./gradlew :github-workflows-kt:dokkaHtml --no-configuration-cache " ,
83
+ command = " ./gradlew :github-workflows-kt:dokkaGenerate " ,
84
84
)
85
85
run (
86
86
name = " Prepare target directory for API docs" ,
Original file line number Diff line number Diff line change 98
98
uses : ' gradle/actions/setup-gradle@v4'
99
99
- id : ' step-16'
100
100
name : ' Generate API docs'
101
- run : ' ./gradlew :github-workflows-kt:dokkaHtml --no-configuration-cache '
101
+ run : ' ./gradlew :github-workflows-kt:dokkaGenerate '
102
102
- id : ' step-17'
103
103
name : ' Prepare target directory for API docs'
104
104
run : ' mkdir -p to-gh-pages/api-docs'
Original file line number Diff line number Diff line change @@ -77,6 +77,6 @@ pitest {
77
77
junit5PluginVersion.set(" 1.1.0" )
78
78
}
79
79
80
- tasks.dokkaHtml {
80
+ dokka {
81
81
moduleName.set(" github-workflows-kt" )
82
82
}
Original file line number Diff line number Diff line change @@ -10,3 +10,5 @@ kotlin.incremental.useClasspathSnapshot=true
10
10
11
11
# So that KSP doesn't generate files in "test" sources root
12
12
ksp.allow.all.target.configuration =false
13
+
14
+ org.jetbrains.dokka.experimental.gradle.pluginMode =V2Enabled
You can’t perform that action at this time.
0 commit comments