mirror of
https://github.com/PowerShell/PowerShell.git
synced 2024-11-23 01:34:19 +08:00
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.
This commit is contained in:
parent
d3fef506f3
commit
afa428ae2c
@ -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"
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user