12 lines
134 B
Text
12 lines
134 B
Text
|
pipeline {
|
||
|
agent any
|
||
|
stages {
|
||
|
stage('Pull') {
|
||
|
steps {
|
||
|
sh '''cd /var/www/ellpeck
|
||
|
git pull'''
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|