We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a6a4e commit 5442277Copy full SHA for 5442277
eng/pipelines/templates/steps/smoke-test-steps.yml
@@ -32,7 +32,7 @@ steps:
32
$packages = Get-ChildItem "$(Pipeline.Workspace)/${{ parameters.ArtifactName }}/${{ parameters.Artifact.name }}/*.tar.gz"
33
Write-Host "Artifacts found:"
34
$artifacts = $packages | ForEach-Object {
35
- if ($_.Name -match "([a-zA-Z\-\_]+)\-(.*).tar.gz") {
+ if ($_.Name -match "([a-zA-Z\-_]+)\-(.*).tar.gz") {
36
Write-Host "$($matches[1]): $($matches[2])"
37
return @{ "name" = $matches[1].ToString().Replace("_", "-"); "version" = $matches[2] }
38
}
0 commit comments