Cleanup workspace when done building

This commit is contained in:
zontreck 2024-12-17 12:13:33 -07:00
parent de69387754
commit 71b9d3933a

4
Jenkinsfile vendored
View file

@ -27,6 +27,8 @@ pipeline {
post {
always {
archiveArtifacts artifacts: "bin/Release/net8.0/publish/ForgeCore"
cleanWs()
}
}
}
@ -49,6 +51,8 @@ pipeline {
post {
always {
archiveArtifacts artifacts:"bin\\Release\\net8.0\\publish\\ForgeCore.exe"
cleanWs()
}
}
}