Add cleanup stage

This commit is contained in:
jose-rZM
2025-12-20 18:58:29 +01:00
parent 256f1073da
commit fc1a8d8ac9
2 changed files with 7 additions and 10 deletions

View File

@@ -118,13 +118,13 @@ pipeline {
}
}
}
}
post {
always {
node('principal') {
stage('Cleanup') {
agent any
steps {
cleanWs()
}
}
}
}