Skip to content

Commit d050fda

Browse files
authored
[ci] Simplify shipping drop metadata names (#9181)
Using the $(System.JobAttempt) variable in the drop metadata artifact name is problematic. In some cases the drop artifacts created by the nuget-msi-convert job will be used by a different job, and the job attempt number will not necessarily match if any jobs are re-ran.
1 parent 9be9159 commit d050fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-tools/automation/azure-pipelines.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ extends:
557557
- output: artifactsDrop
558558
dropServiceURI: https://devdiv.artifacts.visualstudio.com/DefaultCollection
559559
buildNumber: $(ReleaseDropPrefix)/symbols
560-
dropMetadataContainerName: DropMetadata-$(Build.BuildId)-symbols-$(System.JobAttempt)
560+
dropMetadataContainerName: DropMetadata-shipping-symbols
561561
sourcePath: $(Build.StagingDirectory)\symbols
562562
retentionDays: 120
563563
toLowerCase: false
@@ -574,7 +574,7 @@ extends:
574574

575575
- task: DownloadPipelineArtifact@2
576576
inputs:
577-
artifactName: DropMetadata-$(Build.BuildId)-nugets-$(System.JobAttempt)
577+
artifactName: DropMetadata-shipping-nugets
578578
downloadPath: $(Build.StagingDirectory)\metadata
579579
displayName: Download nugets drop metadata
580580

0 commit comments

Comments
 (0)