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 b9c3ff0 commit a621b13Copy full SHA for a621b13
appveyor.yml
@@ -35,4 +35,7 @@ deploy:
35
secure: q710an2WFRwLh6rZQ/I9nKlNt/3d5kYkdUoA5Y1a/hZLr3DGZliSayP+ejF6bj30
36
skip_symbols: false
37
on:
38
- branch: master
+ branch: master
39
+deploy_script:
40
+ - appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
41
+ - ps: ($artifacts.values | Where-Object {($_.path -like '*.nupkg') -and !($_.path -like '*.symbols.nupkg')}) | foreach-object {nuget.exe push $_.path -Source https://www.nuget.org/api/v2/package -ApiKey $env:api_key; if ($lastexitcode -ne 0) {throw}}
0 commit comments