2019-06-13 12:10:50 +00:00
|
|
|
jobs:
|
|
|
|
- job: setupMaestroVars
|
|
|
|
displayName: Setup Maestro Vars
|
|
|
|
pool:
|
|
|
|
vmImage: 'windows-2019'
|
|
|
|
steps:
|
|
|
|
- task: DownloadBuildArtifacts@0
|
|
|
|
displayName: Download Release Configs
|
|
|
|
inputs:
|
|
|
|
buildType: current
|
|
|
|
artifactName: ReleaseConfigs
|
|
|
|
|
|
|
|
- task: PowerShell@2
|
|
|
|
name: setReleaseVars
|
|
|
|
displayName: Set Release Configs Vars
|
|
|
|
inputs:
|
2019-07-27 12:35:24 +00:00
|
|
|
filePath: $(Build.SourcesDirectory)/eng/common/post-build/setup-maestro-vars.ps1
|
|
|
|
arguments: -ReleaseConfigsPath '$(Build.StagingDirectory)/ReleaseConfigs/ReleaseConfigs.txt'
|