Laravel Vapor - Test run command to do housekeeping as part of deployment process

This commit is contained in:
Dillon Ngo
2023-12-31 21:08:25 +08:00
parent 0349e385b7
commit 2c0bf74553
Vendored
+8 -8
View File
@@ -53,14 +53,6 @@ pipeline {
}
}
stage('Cleanup') {
steps {
script {
sh 'docker image prune -a -f'
}
}
}
stage('Deploy') {
steps {
script{
@@ -84,6 +76,14 @@ pipeline {
}
}
}
stage('Cleanup') {
steps {
script {
sh 'docker image prune -a -f'
}
}
}
}
}