From afa428ae2cdcac323bb328669e4b69f994914a95 Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Wed, 23 Oct 2024 20:28:42 +0000 Subject: [PATCH] Merged PR 33071: Fix vpack drop name and dependency in blob copy Fix vpack drop name and dependency in blob copy ---- #### AI description (iteration 1) #### PR Classification Bug fix #### PR Summary This pull request addresses a naming issue and removes an unnecessary dependency in the pipeline configuration. - `.pipelines/PowerShell-vPack-Official.yml`: Fixed the package artifact name by adding a missing 'win' segment. - `.pipelines/templates/release-MakeBlobPublic.yml`: Removed the `dependsOnJob` parameter to eliminate an unnecessary dependency. --- .pipelines/PowerShell-vPack-Official.yml | 2 +- .pipelines/templates/release-MakeBlobPublic.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.pipelines/PowerShell-vPack-Official.yml b/.pipelines/PowerShell-vPack-Official.yml index 33eddc88d0..66d97f5ca1 100644 --- a/.pipelines/PowerShell-vPack-Official.yml +++ b/.pipelines/PowerShell-vPack-Official.yml @@ -138,7 +138,7 @@ extends: installationPath: $(Agent.ToolsDirectory)/dotnet - pwsh: | - $packageArtifactName = 'drop_windows_package_package_${{ parameters.architecture }}' + $packageArtifactName = 'drop_windows_package_package_win_${{ parameters.architecture }}' $vstsCommandString = "vso[task.setvariable variable=PackageArtifactName]$packageArtifactName" Write-Host "sending " + $vstsCommandString Write-Host "##$vstsCommandString" diff --git a/.pipelines/templates/release-MakeBlobPublic.yml b/.pipelines/templates/release-MakeBlobPublic.yml index 1a9fe610b2..84b0799adf 100644 --- a/.pipelines/templates/release-MakeBlobPublic.yml +++ b/.pipelines/templates/release-MakeBlobPublic.yml @@ -110,7 +110,6 @@ jobs: parameters: displayName: Approve Copy Global tool packages to PSInfra storage jobName: CopyBlobApproval - dependsOnJob: PSInfraReleaseBlobPublic instructions: | Approval for Copy global tool packages to PSInfra storage