Skip to content

Commit

Permalink
Use dependant bindings from master by default
Browse files Browse the repository at this point in the history
  • Loading branch information
diserere committed Jul 27, 2020
1 parent 44a8d45 commit c18af90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ pipeline {
[
$class: 'StringParameterValue',
name: 'ton_client_node_js_branch',
value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
value: "master"
// value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
],
[
$class: 'BooleanParameterValue',
Expand All @@ -67,7 +68,8 @@ pipeline {
[
$class: 'StringParameterValue',
name: 'ton_client_web_js_branch',
value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
value: "master"
// value: "${GIT_BRANCH}" ==~ /\d+\.\d+\.\d+-rc/ ? "${GIT_BRANCH}" : "master"
],
[
$class: 'BooleanParameterValue',
Expand Down

0 comments on commit c18af90

Please sign in to comment.