Jenkins instructions

This commit is contained in:
2022-07-08 20:10:18 +02:00
parent bd3ee8c0c6
commit c3487f5a18

11
Jenkinsfile vendored
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Copy to wwww') {
steps {
sh 'cp -r ./* /var/www/dj/'
}
}
}
}