diff --git a/Jenkinsfile b/Jenkinsfile index e22f659..b505f47 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,16 +5,10 @@ pipeline { steps { script { echo "Testing the application..." - echo "Executing pipeline for branch $BRANCH_NAME" } } } stage('build') { - when { - expression { - BRANCH_NAME == 'master' - } - } steps { script { echo "Building the application..." @@ -22,11 +16,6 @@ pipeline { } } stage('deploy') { - when { - expression { - BRANCH_NAME == 'master' - } - } steps { script { echo "Deploying the application..."