Web/Jenkinsfile

12 lines
134 B
Plaintext
Raw Normal View History

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