Welcome to mirror list, hosted at ThFree Co, Russian Federation.

promote-build.yml « steps « templates « common « eng - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b90404435dd79c53906bd3aa19c46382ce8ae433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
parameters:
  ChannelId: 0

steps:
- task: PowerShell@2
  displayName: Add Build to Channel
  inputs:
    filePath: $(Build.SourcesDirectory)/eng/common/post-build/promote-build.ps1
    arguments: -BuildId $(BARBuildId) 
      -ChannelId ${{ parameters.ChannelId }}
      -MaestroApiAccessToken $(MaestroApiAccessToken)
      -MaestroApiEndPoint $(MaestroApiEndPoint)
      -MaestroApiVersion $(MaestroApiVersion)