From 27589a055a421616fbd60e2d6d66f557543ee99e Mon Sep 17 00:00:00 2001 From: 12WW1160 Date: Tue, 1 Dec 2020 18:03:55 +0100 Subject: [PATCH] update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7f4e60f..92c2897 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,12 +20,12 @@ pipeline { stages { - stage('pulling production') { + stage('pulling master') { steps { sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) { sh '''git config user.name "Jenkins Server" git config user.email jenkins@confdroid.com - git pull origin production + git pull origin master git checkout -b jenkins ''' } } @@ -91,7 +91,7 @@ pipeline { sh '''git config user.name "Jenkins Server" git config user.email jenkins@confdroid.com echo `git add -A && git commit -am "recommit for updates in build $BUILD_NUMBER"` - git push origin HEAD:production''' + git push origin HEAD:master''' } } }