Skip to content

Commit

Permalink
Fixing package deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros committed Oct 17, 2017
1 parent e3d4b15 commit a929119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -41,4 +41,4 @@ artifacts:
- path: 'src\**\*.nupkg'

deploy_script:
- ps: if ( ($env:APPVEYOR_REPO_BRANCH -eq "master") -and ($env:APPVEYOR_PULL_REQUEST_NUMBER -eq "") ) { foreach ($artifactName in $artifacts.keys) { nuget push $artifacts[$artifactName] $env:NUGET_API_KEY -Source https://www.nuget.org/api/v2/package } }
- ps: if (($env:APPVEYOR_REPO_BRANCH -eq "master") -and (-Not(Test-Path env:/APPVEYOR_PULL_REQUEST_NUMBER))) { foreach ($artifactName in $artifacts.keys) { nuget push $artifacts[$artifactName].path $env:NUGET_API_KEY -Source https://www.nuget.org/api/v2/package } }

0 comments on commit a929119

Please sign in to comment.