diff --git a/Jenkinsfile b/Jenkinsfile index 952bba1..1bd0e12 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,8 +2,11 @@ pipeline { agent any stages { - stage('pack'){ - sh "dotnet pack Deployment -o ./" + stage('nuget'){ + steps{ + dotnetPack "Deployment -o ./" + dotnetPublish + } } } }