From 662a91c761bbd351c9ce578f461593d2c91475e2 Mon Sep 17 00:00:00 2001 From: zontreck Date: Wed, 25 Dec 2024 02:07:17 -0700 Subject: [PATCH] Re-enable workspace cleanup --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e16f6f8..dd5af73 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,11 +30,11 @@ pipeline { post { always { archiveArtifacts artifacts: "Releases/*.zip" - //cleanWs() + cleanWs() script { if(env.DISCORD_URL != '') { - discordSend customAvatarUrl: '', customFile: '', customUsername: '', description: 'This is an automated build of the modification for Vintage Story.', enableArtifactsList: true, footer: '', image: '', link: '', result: '', scmWebUrl: '', thumbnail: '', title: 'Vintage Storage Build Results', webhookURL: env.DISCORD_URL + discordSend customAvatarUrl: '', customFile: '', customUsername: '', description: 'This is an automated build of the modification for Vintage Story.', enableArtifactsList: true, footer: '', image: '', link: '', result: 'SUCCESS|FAILURE', scmWebUrl: '', thumbnail: '', title: 'Vintage Storage Build Results', webhookURL: env.DISCORD_URL } } }