Skip to content

Commit

Permalink
Filter out symbols source packages
Browse files Browse the repository at this point in the history
Since these pushes fail every time, skip them for now and take care
of later.

Ref: #6.
  • Loading branch information
Tomas Lycken committed Oct 2, 2017
1 parent 2c1e43e commit d33403d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ deploy_script:
return;
}
mkdir dist
$artifacts.keys | % { $artifacts[$_]['sourcePath'] } | Copy-Item -Destination dist
$artifacts.keys | % { $artifacts[$_]['sourcePath'] } | ? { $_ -notlike '*.symbols.nupkg' } | Copy-Item -Destination dist
$packages = ls dist | select -ExpandProperty FullName | ? { $_ -notlike '*.symbols.nupkg' }
$packages | % { dotnet nuget push $_ -k $env:NUGET_API_KEY -sk $env:NUGET_API_KEY -s https://nuget.org/api/v2/package -ss https://nuget.smbsrc.net/ }
if ($LastExitCode -ne 0) { throw; }

0 comments on commit d33403d

Please sign in to comment.