steps.template tanımı
Bir dosyada bir dizi adım tanımlayın ve bunu başka bir dosyada birden çok kez kullanın.
steps:
- template: string # Required as first property. Reference to a template for this step.
parameters: # Parameters used in a step template.
Bu tanıma başvuran tanımlar: adımlar
Özellikler
template
Dize. İlk özellik olarak gereklidir.
Bu adım için şablon başvurusu.
parameters
şablon parametreleri.
Adım şablonunda kullanılan parametreler.
Örnekler
Ana işlem hattında:
steps:
- template: string # reference to template
parameters: { string: any } # provided parameters
Dahil edilen şablonda:
parameters: { string: any } # expected parameters
steps: [ script | bash | pwsh | powershell | checkout | task | templateReference ]
# File: steps/build.yml
steps:
- script: npm install
- script: npm test
# File: azure-pipelines.yml
jobs:
- job: macOS
pool:
vmImage: macOS-latest
steps:
- template: steps/build.yml # Template reference
- job: Linux
pool:
vmImage: ubuntu-latest
steps:
- template: steps/build.yml # Template reference
- job: Windows
pool:
vmImage: windows-latest
steps:
- template: steps/build.yml # Template reference
- script: sign # Extra step on Windows only
Ayrıca bkz.
Şablonlarla çalışma hakkında daha fazla bilgi için şablonlara bakın.