cleanup after build

This commit is contained in:
Primakov Alexandr Alexandrovich 2024-03-29 13:29:35 +03:00
parent cb525f8c19
commit 5d075ac6da

8
Jenkinsfile vendored

@ -25,5 +25,13 @@ pipeline {
sh 'npm run build'
}
}
stage('clean-all') {
steps {
sh 'rm -rf .[!.]*'
sh 'rm -rf ./*'
sh 'ls -a'
}
}
}
}