pipeline { agent any stages { stage('Pull') { when { branch 'master' } steps { sh '''cd /var/www/ellpeck git pull''' } } } }