Jenkinsfile

master
Araozu 2023-10-26 20:31:12 -05:00
parent f3ca1f4fb0
commit 832386bdc7
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile.groovy Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Deploy') {
steps {
sh 'rm -rf /var/www/horarios-v1/*'
sh 'cp -r ./* /var/www/horarios-v1/'
}
}
}
}