Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PublishNightlyDocumentation (3.77 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

     * limitations under the License.
     */
    
    package promotion
    
    import common.VersionedSettingsBranch
    import jetbrains.buildServer.configs.kotlin.triggers.schedule
    import model.StageName
    
    class PublishNightlyDocumentation(
        branch: VersionedSettingsBranch,
    ) : PublishGradleDistributionFullBuild(
            promotedBranch = branch.branchName,
            promoteTask = "publishBranchDocs",
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Apr 30 14:48:06 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

                buildType(PublishFinalRelease(branch))
                buildType(MergeReleaseIntoMaster)
            }
    
            if (branch.isRelease || branch.isExperimental) {
                buildType(PublishNightlyDocumentation(branch))
            }
    
            params {
                password("env.ORG_GRADLE_PROJECT_gradleS3AccessKey", "%gradleS3AccessKey%")
                password("env.ORG_GRADLE_PROJECT_gradleS3SecretKey", "%gradleS3SecretKey%")
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top