Browse Source

Add Myget deploy

Former-commit-id: e905ac0ad7428df0690f5a5268a939522467e5f4
Former-commit-id: 9e97ebadffde0e4ff989cb7b503305c6a05a1e6a
Former-commit-id: fc294afcca8f781927a03f1a9453618d0c86f625
af/merge-core
James Jackson-South 10 years ago
parent
commit
e463e24905
  1. 17
      appveyor.yml

17
appveyor.yml

@ -1,8 +1,10 @@
version: v3.0.0.{build}
os: Visual Studio 2015
install:
# Remove NuGet v2 source as we want to use v3 for everything
- cmd: nuget sources remove -Name nuget.org
before_build:
- cmd: >-
dnvm install 1.0.0-beta8 -r clr
@ -24,9 +26,11 @@ before_build:
node appveyor-project-version-patch.js
cd..
build:
project: ImageProcessor.sln
verbosity: minimal
test_script:
- cmd: >-
dnvm use 1.0.0-beta8 -r coreclr -a x64
@ -35,4 +39,15 @@ test_script:
dnx test
artifacts:
- path: artifacts\bin\ImageProcessor\**\*.nupkg
- path: artifacts\bin\ImageProcessor\**\*.nupkg
deploy:
# MyGet Deployment for builds & releases
- provider: NuGet
server: https://www.myget.org/F/imageprocessor/api/v2/package
symbol_server: https://nuget.symbolsource.org/MyGet/imageprocessor
api_key:
secure: fz0rUrt3B1HczUC1ZehwVsrFSWX9WZGDQoueDztLte9/+yQG+BBU7UrO+coE8lUf
artifact: /.*\.nupkg/
on:
branch: V3
Loading…
Cancel
Save