diff --git a/Jenkinsfile b/Jenkinsfile index d5eb792..551fe13 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,6 +5,9 @@ pipeline { } stages { + stage('Parent') { + when { anyOf { branch 'main'; branch 'beta-release' } } + stages { stage('Build') { steps { sh ''' @@ -32,6 +35,8 @@ pipeline { } } } + } + } post { always { cleanWs(notFailBuild: true,