ensure publish does not exist
piwigodotnet/pipeline/head This commit looks good Details

This commit is contained in:
Philipp Häfelfinger 2022-10-25 23:08:41 +02:00
parent c11544245f
commit 32be0e336a
1 changed files with 6 additions and 0 deletions

6
Jenkinsfile vendored
View File

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