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