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