Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PublishFinalRelease (0.18 sec)

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

        if (branch.isMaster) {
            buildType(StartReleaseCycle)
            buildType(StartReleaseCycleTest)
        } else {
            buildType(PublishReleaseCandidate(branch))
            buildType(PublishFinalRelease(branch))
        }
    
        if (branch.isRelease || branch.isExperimental) {
            buildType(PublishNightlyDocumentation(branch))
        }
    
        params {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Feb 29 04:36:37 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

                    allowEmpty = true
                )
            }
    
            cleanup {
                history(days = 180)
            }
    
            this.init()
        }
    }
    
    class PublishFinalRelease(branch: VersionedSettingsBranch) : PublishRelease(
        promotedBranch = branch.branchName,
        prepTask = "prepFinalRelease",
        promoteTask = branch.promoteFinalReleaseTaskName(),
        requiredConfirmationCode = "final",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.5K bytes
    - Viewed (0)
Back to top