let's see if this works

This commit is contained in:
Ellpeck 2020-02-25 13:10:28 +01:00
parent 641ebbfe24
commit e2d3f619fd
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage('Pull') {
steps {
sh '''cd /var/www/ellpeck
git pull'''
}
}
}
}