Skip to content

Commit

Permalink
kie-issues#2679: [SonataFlow] SonataFlow Management Console on KIE To…
Browse files Browse the repository at this point in the history
…ols daily dev job (#2689)
  • Loading branch information
fantonangeli authored Oct 21, 2024
1 parent a71e710 commit 7bc06a6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .ci/jenkins/Jenkinsfile.daily-dev-publish
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ pipeline {
SONATAFLOW_DEVMODE_IMAGE__name = 'incubator-kie-sonataflow-devmode'
SONATAFLOW_DEVMODE_IMAGE__buildTag = "${params.BRANCH_NAME}"

SONATAFLOW_MANAGEMENT_CONSOLE__registry = 'docker.io'
SONATAFLOW_MANAGEMENT_CONSOLE__account = 'apache'
SONATAFLOW_MANAGEMENT_CONSOLE__name = 'incubator-kie-sonataflow-management-console'
SONATAFLOW_MANAGEMENT_CONSOLE__buildTag = "${params.BRANCH_NAME}"

SONATAFLOW_OPERATOR__registry = 'docker.io'
SONATAFLOW_OPERATOR__account = 'apache'
SONATAFLOW_OPERATOR__name = 'incubator-kie-sonataflow-operator'
Expand Down Expand Up @@ -273,6 +278,21 @@ pipeline {
}
}

stage('Push sonataflow-management-console to Docker Hub') {
steps {
script {
dockerUtils.pushImageToRegistry(
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__registry}",
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__account}",
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__name}",
"${env.SONATAFLOW_MANAGEMENT_CONSOLE__buildTag}",
"${pipelineVars.dockerHubUserCredentialsId}",
"${pipelineVars.dockerHubTokenCredentialsId}"
)
}
}
}

stage('Push sonataflow-operator to Docker Hub') {
steps {
script {
Expand Down

0 comments on commit 7bc06a6

Please sign in to comment.