diff --git a/.azure-pipelines/templates/service.yaml b/.azure-pipelines/templates/service.yaml old mode 100644 new mode 100755 index d764be972..bebfce62d --- a/.azure-pipelines/templates/service.yaml +++ b/.azure-pipelines/templates/service.yaml @@ -109,12 +109,12 @@ stages: IN_CI: true steps: - checkout: self - - ${{ each dep in parameters.serviceDependencies }}: + - ${{ each dependency in parameters.serviceDependencies }}: - task: DownloadPipelineArtifact@2 - displayName: Download artifacts from ${{ dep }} dependency + displayName: Download artifacts from ${{ dependency.name }} dependency inputs: - artifact: ${{ dep }} - patterns: '**/*' + artifact: ${{ dependency.artifact }} + patterns: '${{ dependency.patterns }}' path: '$(Build.Repository.LocalPath)' - ${{ each buildStep in parameters.buildSteps }}: - template: ./service/build-step.yaml diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index f72221653..147261ddd 100755 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -30,7 +30,9 @@ parameters: pool: 'Prod Private Agent Pool DS3' timeout: 1440 dependencies: - - frontend + - name: frontend + artifact: frontend + patterns: '**/*' artifacts: | bin/uniworx bin/uniworxdb