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 6b4d714 commit 9174a08Copy full SHA for 9174a08
1 file changed
appveyor.yml
@@ -27,7 +27,12 @@ build_script:
27
dotnet publish src/DiffEngine.AotTests/DiffEngine.AotTests.csproj --configuration Release-NotWindows
28
}
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
test: off
37
artifacts:
38
- path: nugets\*.nupkg
0 commit comments