Skip to content

Commit 1dd5635

Browse files
committed
rename
1 parent 72522c2 commit 1dd5635

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/win-build.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,9 @@ jobs:
9595
id: pkg
9696
shell: pwsh
9797
run: |
98-
# look only in the wrapper project’s output folder and only for files
99-
# that start with "Rubjerg.Graphviz." (skip *.symbols.nupkg too)
100-
$pkg = Get-ChildItem Rubjerg.Graphviz\bin\Release -Recurse `
101-
-Filter "Rubjerg.Graphviz.*.nupkg" -File |
102-
Where-Object { $_.Name -notlike "*.symbols.nupkg" } |
98+
# search everywhere under Rubjerg.Graphviz\bin\ for the first package
99+
$pkg = Get-ChildItem Rubjerg.Graphviz\bin -Recurse -Filter "Rubjerg.Graphviz.*.nupkg" -File |
100+
Where-Object { $_.Name -notlike "*.symbols.nupkg" } |
103101
Select-Object -First 1
104102
105103
if (-not $pkg) { throw "Rubjerg.Graphviz nupkg not found" }

0 commit comments

Comments
 (0)