Skip to content

Commit 98a03d8

Browse files
committed
Fixed filter regex (was looking for - instead of . after the number)
1 parent abda23b commit 98a03d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/Lucene-Net-Performance-Regression.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
146146
# Filter packages to use as artifacts
147147
$packages = Get-ChildItem -Path "$tempOutputDir\*" -Recurse -Include 'Lucene.Net*.nupkg' | Where-Object {
148-
$_.Name -match '^Lucene\.Net(\.Analysis\.Common|\.Expressions|\.Facet|\.Grouping|\.Join|\.Queries|\.QueryParser|\.Sandbox)?-[0-9]+\.[0-9]+\.[0-9]+.*\.nupkg$'
148+
$_.Name -match '^Lucene\.Net(\.Analysis\.Common|\.Expressions|\.Facet|\.Grouping|\.Join|\.Queries|\.QueryParser|\.Sandbox)?\.[0-9]+\.[0-9]+\.[0-9]+.*\.nupkg$'
149149
}
150150
151151
Write-Host "Packages Found: $packages"

0 commit comments

Comments
 (0)