Skip to content

Commit

Permalink
Correct promote pipeline (#5431) (#5433)
Browse files Browse the repository at this point in the history
Co-authored-by: Tristan Radisson <[email protected]>
  • Loading branch information
github-actions[bot] and radtriste committed Aug 2, 2023
1 parent 88d8211 commit f35559b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .ci/jenkins/Jenkinsfile.promote
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pipeline {

stage('Upload drools binaries and documentation') {
when {
expression { return isRelease() }
expression { return isRelease() && isStream8() }
}
steps {
script {
Expand Down Expand Up @@ -288,4 +288,8 @@ void uploadFileMgmt(String directory) {

boolean isNotTestingBuild() {
return getGitAuthor() == 'kiegroup'
}
}

boolean isStream8() {
return env.DROOLS_STREAM == '8'
}

0 comments on commit f35559b

Please sign in to comment.