We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d43ec2 commit e746958Copy full SHA for e746958
1 file changed
src/appveyor.yml
@@ -11,6 +11,11 @@ build_script:
11
- dotnet test src --configuration Release --no-build --no-restore
12
test: off
13
on_failure:
14
- - ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
+ - ps: |
15
+ $root = (Get-Location).Path
16
+ Get-ChildItem *.received.* -Recurse | % {
17
+ $rel = $_.FullName.Substring($root.Length + 1)
18
+ Push-AppveyorArtifact $_.FullName -FileName $rel
19
+ }
20
artifacts:
21
- path: nugets\*.nupkg
0 commit comments