95fdb59ea6
Former-commit-id: b39a328747c2f3414dc52e009fb6f0aa80ca2492
19 lines
569 B
YAML
19 lines
569 B
YAML
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:
|
|
filePath: $(Build.SourcesDirectory)/eng/common/post-build/setup-maestro-vars.ps1
|
|
arguments: -ReleaseConfigsPath '$(Build.StagingDirectory)/ReleaseConfigs/ReleaseConfigs.txt'
|