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 {