From 2650472adbc5c451e54e2b75dc099a5057381fe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Pfeuffer?= Date: Mon, 18 Jan 2021 12:05:47 +0100 Subject: [PATCH] Add deployment of presentation environment --- Jenkinsfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 45b5f506b7..bc2fc761c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -100,6 +100,22 @@ pipeline { } } + stage('Presentation Environment') { + when { + branch 'develop' + expression { return isBuildSuccess() } + } + steps { + script { + def imageVersion = readFile 'scm-packaging/docker/build/docker.tag' + + build job: 'scm-manager/next-scm.cloudogu.com', propagate: false, wait: false, parameters: [ + string(name: 'imageTag', value: imageVersion) + ] + } + } + } + stage('Push Tag') { when { branch pattern: 'release/*', comparator: 'GLOB'