diff --git a/Jenkinsfile b/Jenkinsfile index 8028deca350abe05a476de6816dc32272fc6419a..2660f439ceea5002be7350a683d06ac75c7386b5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -157,6 +157,23 @@ pipeline { } } } + + stage('Trigger Test rollout') { + when { + branch 'release' + } + steps { + script { + FAILED_STAGE = env.STAGE_NAME + + cloneGitopsRepo() + + setNewTestAdministrationVersion() + + pushTestGitopsRepo() + } + } + } } post {