steps.download definition
Krok download
pobiera artefakty skojarzone z bieżącym uruchomieniem lub z innej usługi Azure Pipeline skojarzonej jako zasób potoku.
steps:
- download: string # Required as first property. Specify current, pipeline resource identifier, or none to disable automatic download.
artifact: string # Artifact name.
patterns: string # Pattern to download files from artifact.
condition: string # Evaluate this condition expression to determine whether to run this task.
continueOnError: boolean # Continue running even on failure?
displayName: string # Human-readable name for the task.
target: string | target # Environment in which to run this task.
enabled: boolean # Run this task when the job runs?
env: # Variables to map into the process's environment.
string: string # Name/value pairs
name: string # ID of the step.
timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
retryCountOnTaskFailure: string # Number of retries if the task fails.
steps:
- download: string # Required as first property. Specify current, pipeline resource identifier, or none to disable automatic download.
artifact: string # Artifact name.
patterns: string # Pattern to download files from artifact.
condition: string # Evaluate this condition expression to determine whether to run this task.
continueOnError: boolean # Continue running even on failure?
displayName: string # Human-readable name for the task.
target: string | target # Environment in which to run this task.
enabled: boolean # Run this task when the job runs?
env: # Variables to map into the process's environment.
string: string # Name/value pairs
name: string # ID of the step.
timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
steps:
- download: string # Required as first property. Specify current, pipeline resource identifier, or none to disable automatic download.
artifact: string # Artifact name.
patterns: string # Pattern to download files from artifact.
condition: string # Evaluate this condition expression to determine whether to run this task.
continueOnError: boolean # Continue running even on failure?
displayName: string # Human-readable name for the task.
enabled: boolean # Run this task when the job runs?
env: # Variables to map into the process's environment.
string: string # Name/value pairs
name: string # ID of the step.
timeoutInMinutes: string # Time to wait for this task to complete before the server kills it.
Definicje odwołujące się do tej definicji: kroki
Właściwości
download
Ciąg. Wymagane jako pierwsza właściwość.
Określ bieżący, identyfikator zasobu potoku lub brak, aby wyłączyć automatyczne pobieranie.
artifact
Ciąg.
Nazwa artefaktu.
patterns
Ciąg.
Wzorzec pobierania plików z artefaktu.
condition
Ciąg.
Oceń to wyrażenie warunku, aby określić, czy należy uruchomić to zadanie.
continueOnError
wartość logiczna.
Czy kontynuować działanie nawet w przypadku awarii?
displayName
Ciąg.
Czytelna dla człowieka nazwa zadania.
target
element docelowy.
Środowisko, w którym ma zostać uruchomione to zadanie.
enabled
wartość logiczna.
Czy uruchomić to zadanie, gdy zadanie zostanie uruchomione?
env
słownik ciągów.
Zmienne do mapowania na środowisko procesu.
name
Ciąg.
Identyfikator kroku. Dopuszczalne wartości: [-_A-Za-z0-9]*.
timeoutInMinutes
Ciąg.
Czas oczekiwania na ukończenie tego zadania, zanim serwer go zabije.
Uwaga
Potoki można skonfigurować z limitem czasu na poziomie zadania. Jeśli interwał limitu czasu na poziomie zadania upłynie przed ukończeniem kroku, zadanie uruchomione (w tym krok) zostanie zakończone, nawet jeśli krok zostanie skonfigurowany z dłuższym timeoutInMinutes
interwałem. Aby uzyskać więcej informacji, zobacz Limity czasu.
retryCountOnTaskFailure
Ciąg.
Liczba ponownych prób w przypadku niepowodzenia zadania.
Uwagi
Słowo download
kluczowe pobiera zasoby artefaktów.
W zależności od typu artefaktu (lub artefaktów) download
wywołuje metodę Pobierz artefakty potoku (w przypadku artefaktów potoku, jeśli potok jest uruchomiony w Azure DevOps Services), Pobierz artefakty kompilacji (dla artefaktów kompilacji) lub Pobierz artefakty z udziału plików (dla artefaktów udziału plików).
Lokalizacja pobierania artefaktu
Artefakty z bieżącego potoku są pobierane do .$(Pipeline.Workspace)/<artifact name>
Artefakty ze skojarzonego zasobu potoku są pobierane do .$(Pipeline.Workspace)/<pipeline resource identifier>/<artifact name>
Automatyczne pobieranie w zadaniach wdrażania
Wszystkie dostępne artefakty z bieżącego potoku i skojarzonych zasobów potoku są automatycznie pobierane w zadaniach wdrażania i udostępniane dla danego wdrożenia.
Aby zapobiec pobieraniu, określ wartość download: none
.
Przykłady
steps:
- download: current # refers to artifacts published by current pipeline
artifact: WebApp
patterns: '**/.js'
displayName: Download artifact WebApp
- download: MyAppA # downloads artifacts available as part of the pipeline resource specified as MyAppA