From e941ccd49973923a337f8849a86fb5543cce733e Mon Sep 17 00:00:00 2001 From: Tian Liao Date: Thu, 26 Oct 2023 00:34:51 +0800 Subject: [PATCH] DownloadPipelineArtifact --- build/pipelines/templates/package-msixbundle.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/pipelines/templates/package-msixbundle.yaml b/build/pipelines/templates/package-msixbundle.yaml index 8c8c0174..b6f2a5e0 100644 --- a/build/pipelines/templates/package-msixbundle.yaml +++ b/build/pipelines/templates/package-msixbundle.yaml @@ -51,7 +51,7 @@ jobs: - checkout: self fetchDepth: 1 - - task: DownloadPipelineArtifacts@2 + - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (x86) condition: and(succeeded(), eq(variables.PackageX86, 'true')) inputs: @@ -59,7 +59,7 @@ jobs: itemPattern: '**/*.msix' targetPath: $(Build.ArtifactStagingDirectory)\drop\x86 - - task: DownloadPipelineArtifacts@2 + - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (x64) condition: and(succeeded(), eq(variables.PackageX64, 'true')) inputs: @@ -67,7 +67,7 @@ jobs: itemPattern: '**/*.msix' targetPath: $(Build.ArtifactStagingDirectory)\drop\x64 - - task: DownloadPipelineArtifacts@2 + - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (ARM) condition: and(succeeded(), eq(variables.PackageARM, 'true')) inputs: @@ -75,7 +75,7 @@ jobs: itemPattern: '**/*.msix' targetPath: $(Build.ArtifactStagingDirectory)\drop\ARM - - task: DownloadPipelineArtifacts@2 + - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (ARM64) condition: and(succeeded(), eq(variables.PackageARM64, 'true')) inputs: