diff --git a/Jenkinsfile b/Jenkinsfile index f079d5d..06ba6a7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,7 +20,7 @@ pipeline { stage('Restore & Build') { steps { bat 'dotnet restore PowderCoatingApp.sln' - bat 'dotnet build PowderCoatingApp.sln -c Release --no-restore -r linux-x64' + bat 'dotnet build PowderCoatingApp.sln -c Release --no-restore' } } @@ -35,7 +35,7 @@ pipeline { stage('Publish') { steps { - bat 'dotnet publish src\\PowderCoating.Web\\PowderCoating.Web.csproj -c Release --no-build -r linux-x64 --self-contained false -o publish' + bat 'dotnet publish src\\PowderCoating.Web\\PowderCoating.Web.csproj -c Release -r linux-x64 --self-contained false -o publish' } }