From 30eda5dd0721a571e0e7b25c8254aa4df50a048b Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Fri, 1 Dec 2023 18:55:53 -0500 Subject: [PATCH] does Clean Workspace go at the end? --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bc8ea05..5c4caa8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,6 @@ pipeline { agent any stages { - stage ('Clean workspace') { - steps { - cleanWs() - } - } stage('build franz') { steps { echo 'building franz' @@ -23,6 +18,11 @@ pipeline { sh 'dotnet publish topiclister/topiclister.csproj --configuration Release --output ./topiclister' } } + stage ('Clean workspace') { + steps { + cleanWs() + } + } } post { always {