Jenkinsfile

This commit is contained in:
Araozu 2023-10-26 20:31:12 -05:00
parent f3ca1f4fb0
commit 832386bdc7

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/'
}
}
}
}