Skip to content

Commit

Permalink
correct issue with node publishing not honoring artifact name (#8590)
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd authored Jul 9, 2024
1 parent 890b52b commit 3e7ce10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ extends:

- pwsh: |
Write-Host "Will deploy with tag of $(Tag)"
Get-ChildItem "$(Pipeline.Workspace)/drop" -Recurse -Force `
Get-ChildItem "$(Pipeline.Workspace)/${{ parameters.ArtifactName }}" -Recurse -Force `
| Where-Object { $_.Name -like "*.tgz" } `
| Copy-Item -Destination "$(Build.ArtifactStagingDirectory)"
Expand Down

0 comments on commit 3e7ce10

Please sign in to comment.