Files
YTDJ/Jenkinsfile

12 lines
167 B
Plaintext
Raw Normal View History

2022-07-08 20:10:18 +02:00
pipeline {
agent any
stages {
stage('Copy to wwww') {
steps {
sh 'cp -r ./* /var/www/dj/'
}
}
}
}