Web/Jenkinsfile

15 lines
181 B
Plaintext
Raw Normal View History

2020-02-25 13:10:28 +01:00
pipeline {
agent any
stages {
stage('Pull') {
2020-03-15 13:20:58 +01:00
when {
branch 'master'
}
2020-02-25 13:10:28 +01:00
steps {
sh '''cd /var/www/ellpeck
git pull'''
}
}
}
}