définition steps.download

L’étape download télécharge les artefacts associés à l’exécution actuelle ou à partir d’un autre pipeline Azure associé en tant que ressource de pipeline.

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.

Définitions qui font référence à cette définition : étapes

Propriétés

download String. Obligatoire comme première propriété.
Spécifiez actuel, identificateur de ressource de pipeline ou aucun pour désactiver le téléchargement automatique.

artifact String.
Nom de l’artefact.

patterns String.
Modèle pour télécharger des fichiers à partir de l’artefact.

condition String.
Évaluez cette expression de condition pour déterminer s’il faut exécuter cette tâche.

continueOnErrorbooléen.
Continuez à exécuter même en cas d’échec ?

displayName String.
Nom lisible par l’homme pour la tâche.

targetcible.
Environnement dans lequel exécuter cette tâche.

enabledbooléen.
Exécuter cette tâche lors de l’exécution du travail ?

env dictionnaire de chaînes.
Variables à mapper dans l’environnement du processus.

name String.
ID de l’étape. Valeurs acceptables : [-_A-Za-z0-9]*.

timeoutInMinutes String.
Il est temps d’attendre que cette tâche se termine avant que le serveur l’arrête.

Notes

Les pipelines peuvent être configurés avec un délai d’expiration au niveau du travail. Si l’intervalle de délai d’expiration du niveau du travail s’écoule avant la fin de votre étape, le travail en cours d’exécution (y compris votre étape) est arrêté, même si l’étape est configurée avec un intervalle plus long timeoutInMinutes . Pour plus d’informations, consultez Délais d’expiration.

retryCountOnTaskFailure String.
Nombre de nouvelles tentatives en cas d’échec de la tâche.

Remarques

Le download mot clé télécharge les ressources d’artefact.

Selon le type d’artefact référencé (ou d’artefacts), download appelle Télécharger les artefacts de pipeline (pour les artefacts de pipeline, si votre pipeline est en cours d’exécution dans Azure DevOps Services), Télécharger les artefacts de build (pour les artefacts de build) ou Télécharger des artefacts à partir d’un partage de fichiers (pour les artefacts de partage de fichiers).

Emplacement de téléchargement de l’artefact

Les artefacts du pipeline actuel sont téléchargés dans $(Pipeline.Workspace)/<artifact name>.

Les artefacts de la ressource de pipeline associée sont téléchargés dans $(Pipeline.Workspace)/<pipeline resource identifier>/<artifact name>.

Téléchargement automatique dans les travaux de déploiement

Tous les artefacts disponibles à partir du pipeline actuel et des ressources de pipeline associées sont automatiquement téléchargés dans les travaux de déploiement et mis à disposition pour votre déploiement.

Pour empêcher les téléchargements, spécifiez download: none.

Exemples

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

Voir aussi