ensure publish does not exist
All checks were successful
piwigodotnet/pipeline/head This commit looks good

This commit is contained in:
Philipp Häfelfinger 2022-10-25 23:08:41 +02:00
parent c11544245f
commit 32be0e336a

6
Jenkinsfile vendored
View File

@ -10,6 +10,12 @@ pipeline {
} }
stages { stages {
stage('cleaning workspace') {
steps {
sh "rm -rf ${env.WORKSPACE}/publish"
}
}
stage('nuget restore') { stage('nuget restore') {
steps { steps {
sh "dotnet restore ${env.WORKSPACE}/src/PiwigoDotnet.sln" sh "dotnet restore ${env.WORKSPACE}/src/PiwigoDotnet.sln"