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