File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ pipeline {
69
69
def buildParams = getDefaultBuildParams()
70
70
addSkipTestsParam(buildParams)
71
71
addSkipIntegrationTestsParam(buildParams)
72
+ String quickstartsBranch = getBuildBranch() == 'main' ? 'development' : getBuildBranch()
73
+ addStringParam(buildParams, 'QUICKSTARTS_BUILD_BRANCH_NAME', quickstartsBranch)
72
74
73
75
buildJob(OPTAPLANNER_DEPLOY, buildParams)
74
76
}
@@ -153,7 +155,6 @@ List getDefaultBuildParams() {
153
155
List params = []
154
156
addStringParam(params, 'DISPLAY_NAME', "${env.WEEKLY_TAG}")
155
157
addStringParam(params, 'GIT_CHECKOUT_DATETIME', getCheckoutDatetime())
156
- addStringParam(params, 'QUICKSTARTS_BUILD_BRANCH_NAME', getBuildBranch())
157
158
addBooleanParam(params, 'SEND_NOTIFICATION', true)
158
159
159
160
return params
You can’t perform that action at this time.
0 commit comments