Add Skip.SetTestPipelineVersion to allow overidiing of use of BuildID for test version (#17519)

Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
This commit is contained in:
Azure SDK Bot 2021-09-08 13:00:38 -07:00 коммит произвёл GitHub
Родитель 6ccd67cb3d
Коммит 9e79f881ac
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4,10 +4,10 @@ parameters:
TestPipeline: false
steps:
- ${{if eq(parameters.TestPipeline, 'true')}}:
- ${{ if eq(parameters.TestPipeline, 'true') }}:
- task: PowerShell@2
displayName: Prep template pipeline for release
condition: succeeded()
condition: and(succeeded(), ne(variables['Skip.SetTestPipelineVersion'], 'true'))
inputs:
pwsh: true
workingDirectory: $(Build.SourcesDirectory)