diff --git a/Jenkinsfile b/Jenkinsfile index f58e715..e6d6af1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,11 @@ pipeline { } stage("Publish") { steps { - sh 'conda run -n base dotnet publish --configuration Release --output output/shop-modules Props.Shop/**/*.csproj' + sh '''#!/bin/bash + for file in Props.Shop/**/*.csproj do + conda run -n base dotnet publish --configuration Release --output output/shop-modules $file + done + ''' sh 'rm output/shop-modules/**/*.Tests.dll' fingerprint 'output/shop-modules/**/Props.Shop.*' sh 'cp ./Props.Shop/output/shop-modules/**/*.dll ./Props.Shop/output/shop-modules/**/*.deps.json ./Props/shops/.'