diff --git a/Jenkinsfile b/Jenkinsfile index 8028deca350abe05a476de6816dc32272fc6419a..893a3e9e8877e475d11c4f15dbe269fc18f357c6 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 {