diff --git a/Jenkinsfile b/Jenkinsfile index cb263d9..b55f010 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,25 +6,6 @@ node } stage('deploy') { - echo 'branch name ' + env.BRANCH_NAME - - if (env.BRANCH_NAME.startsWith("Feature_")) - { - echo "Deploying to Dev environment after build" - } - - else if (env.BRANCH_NAME.startsWith("Release_")) - { - echo "Deploying to Stage after build and Dev Deployment" - } - - else if (env.BRANCH_NAME.startsWith("master")) - { - echo "Deploying to PROD environment" - } - - sh """chmod +x HelloWorld.sh - ./HelloWorld.sh""" - + echo "Hello Kent" } } diff --git a/README.md b/README.md index 016d6a4..a9c7f37 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # BranchingandMergingDemo Repository to Demo Branching and Merging +hello