Web/Jenkinsfile
2020-03-15 13:20:58 +01:00

15 lines
181 B
Groovy

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