Skip to content

Commit

Permalink
Adding deployment keys to appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeavon committed Mar 19, 2015
1 parent 878a9f5 commit 0cebe8d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ artifacts:
- path: package\artifacts\*.zip

deploy:
# MyGet Deployment for builds & releases
- provider: NuGet
server: https://www.myget.org/F/nupickers/
symbol_server: https://nuget.symbolsource.org/MyGet/nupickers
Expand All @@ -26,3 +27,22 @@ deploy:
artifact: /.*\.nupkg/
on:
branch: master

# NuGet Deployment for releases
- provider: NuGet
server:
api_key:
secure: adk3pI9HCByZg2VRxplX9UR6qHf97bA3as6dusxLswCKI8BQQE8DO5a0frLrI+EO
artifact: /.*\.nupkg/
on:
branch: release

# GitHub Deployment for releases
- provider: GitHub
auth_token:
secure: c0LwOGqoFZIieyy8CHrUtYQOD0HL0rG5tV2DS+8FHv34BKs/LSGGtmWWep5O7GbV
artifact: /.*\.zip/ # upload all Zip packages to release assets
draft: false
prerelease: false
on:
branch: release

0 comments on commit 0cebe8d

Please sign in to comment.