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 2b57988 commit 79d06dbCopy full SHA for 79d06db
1 file changed
src/appveyor.yml
@@ -12,7 +12,12 @@ build_script:
12
- dotnet build src --configuration Release
13
- dotnet test src --configuration Release --no-build --no-restore
14
on_failure:
15
- - ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
+ - ps: |
16
+ $root = (Get-Location).Path
17
+ Get-ChildItem *.received.* -Recurse | % {
18
+ $rel = $_.FullName.Substring($root.Length + 1)
19
+ Push-AppveyorArtifact $_.FullName -FileName $rel
20
+ }
21
test: off
22
artifacts:
23
- path: nugets\*.nupkg
0 commit comments