File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
.teamcity/kotlinlang/builds Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
package kotlinlang.builds
2
2
3
+ import documentation.builds.KotlinWithCoroutines
3
4
import jetbrains.buildServer.configs.kotlin.BuildType
4
5
import jetbrains.buildServer.configs.kotlin.FailureAction
5
6
import jetbrains.buildServer.configs.kotlin.buildSteps.script
@@ -52,13 +53,16 @@ object PdfGenerator : BuildType({
52
53
}
53
54
54
55
dependencies {
55
- dependency(BuildReferenceDocs ) {
56
+ dependency(KotlinWithCoroutines ) {
56
57
snapshot {
57
58
onDependencyFailure = FailureAction .FAIL_TO_START
58
59
onDependencyCancel = FailureAction .CANCEL
59
60
}
60
61
artifacts {
61
- artifactRules = " +:docs.zip!** => dist/docs/"
62
+ artifactRules = """
63
+ +:webHelpImages.zip!** => dist/docs/images/
64
+ +:webHelpKR2.zip!** => dist/docs/
65
+ """ .trimIndent()
62
66
}
63
67
}
64
68
}
You can’t perform that action at this time.
0 commit comments