Jenkinsfile fix 4

This commit is contained in:
Simon Gardling 2021-04-12 11:58:23 -04:00
parent ff504832ac
commit e7dfd4d75e

16
Jenkinsfile vendored
View File

@ -74,15 +74,13 @@ pipeline {
} }
} }
stage('Archive Jars') { stage('Archive Jars') {
steps { steps {
archiveArtifacts(artifacts: 'target/*.jar', fingerprint: true) archiveArtifacts(artifacts: 'target/*.jar', fingerprint: true)
} }
} post {
post { always {
always { cleanWs()
cleanWs()
sh 'rm -rf /home/jenkins/workspace/YatopiaMC_Yatopia_ver_1.16.5'
} }
} }
} }