Compare commits

...

2 commits

Author SHA1 Message Date
Ell fe9e5c658a Merge remote-tracking branch 'origin/main' 2022-10-31 13:02:37 +01:00
Ell 3a65960309 fixed ci 2022-10-31 13:02:30 +01:00

4
Jenkinsfile vendored
View file

@ -9,7 +9,7 @@ pipeline {
stage('Pack') {
steps {
sh 'find . -type f -name \\\'*.nupkg\\\' -delete'
sh 'find . -type f -name "*.nupkg" -delete'
sh 'dotnet pack --version-suffix ${BUILD_NUMBER}'
}
}
@ -19,7 +19,7 @@ pipeline {
branch 'main'
}
steps {
sh 'dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n true'
sh 'dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n'
}
}
}