diff --git a/Jenkinsfile b/Jenkinsfile index 45b24790..f3d1ce43 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,12 +3,14 @@ pipeline { stages { stage('Pull') { steps { + sh 'git pull origin 7.x-2.x --tags' sh 'git pull origin 7.x-2.x' } } stage('Push') { steps { - sh 'git push git@github.com:blakemorgan/drupal-mirror-test.git HEAD:7.x-2.x' + sh 'git push git@github.com:byuweb/byu_theme_drupal.git HEAD:refs/heads/7.x-2.x' + sh 'git push git@github.com:byuweb/byu_theme_drupal.git --tags' } } }