We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b2422 commit 703532aCopy full SHA for 703532a
1 file changed
src/appveyor.yml
@@ -13,4 +13,9 @@ test: off
13
artifacts:
14
- path: nugets\*.nupkg
15
on_failure:
16
- - ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
+ - ps: |
17
+ $root = (Get-Location).Path
18
+ Get-ChildItem *.received.* -Recurse | % {
19
+ $rel = $_.FullName.Substring($root.Length + 1)
20
+ Push-AppveyorArtifact $_.FullName -FileName $rel
21
+ }
0 commit comments