Jenkinsfile fix 4

This commit is contained in:
Simon Gardling 2021-04-12 11:58:23 -04:00
parent ff504832ac
commit e7dfd4d75e
1 changed files with 7 additions and 9 deletions

16
Jenkinsfile vendored
View File

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