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 ca30fa5 commit 62b5463Copy full SHA for 62b5463
1 file changed
src/appveyor.yml
@@ -27,6 +27,11 @@ build_script:
27
- dotnet test src --configuration Release --no-build --no-restore
28
test: off
29
on_failure:
30
- - ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
+ - ps: |
31
+ $root = (Get-Location).Path
32
+ Get-ChildItem *.received.* -Recurse | % {
33
+ $rel = $_.FullName.Substring($root.Length + 1)
34
+ Push-AppveyorArtifact $_.FullName -FileName $rel
35
+ }
36
artifacts:
37
- path: nugets\*.nupkg
0 commit comments