Compare commits

..

No commits in common. "fe9e5c658aca6cc4784e55e3f294ee0a9393785a" and "8f3f960e57689b886ca98110a9c0c41b4909e3da" have entirely different histories.

4
Jenkinsfile vendored
View file

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