We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72522c2 commit 1dd5635Copy full SHA for 1dd5635
1 file changed
.github/workflows/win-build.yml
@@ -95,11 +95,9 @@ jobs:
95
id: pkg
96
shell: pwsh
97
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" } |
+ # search everywhere under Rubjerg.Graphviz\bin\ for the first package
+ $pkg = Get-ChildItem Rubjerg.Graphviz\bin -Recurse -Filter "Rubjerg.Graphviz.*.nupkg" -File |
+ Where-Object { $_.Name -notlike "*.symbols.nupkg" } |
103
Select-Object -First 1
104
105
if (-not $pkg) { throw "Rubjerg.Graphviz nupkg not found" }
0 commit comments