@@ -7,6 +7,7 @@ assembly_info:
77
88# Build script
99version : ' {build}'
10+
1011image : Previous Visual Studio 2017
1112os : Previous Visual Studio 2017
1213
@@ -75,27 +76,48 @@ test: off
7576# ---------------------------------#
7677
7778artifacts :
78- - path : ' artifacts\Nugets\**\*.nupkg'
79- - path : ' build\**\*.zip'
79+ # Store NuGet packages
80+ - path : .\Artifacts\**\*.nupkg
81+ name : NuGet
82+ # Store xUnit Test Results
83+ - path : .\Artifacts\**\*.trx
84+ name : xUnit Test Results
85+
8086
8187# ---------------------------------#
8288# deployment configuration #
8389# ---------------------------------#
8490
8591deploy :
86- - provider : GitHub
92+ - provider : GitHub
8793 auth_token :
8894 secure : xxx
8995 artifact : /.*\.zip/
9096 draft : true
9197 on :
9298 appveyor_repo_tag : true
93-
94- - provider : NuGet
95- api_key :
96- secure : xxx
97- on :
98- appveyor_repo_tag : true
99+ # Publish MyGet packages
100+ - provider : NuGet
101+ name : development
102+ server : https://www.myget.org/F/courio-dev/api/v2/package
103+ api_key :
104+ secure : 9uzkCroixqPrC9das6F7wx42qI+xXhfz+L0Bu4XPwxmIh8f+UrZGUEBwvsOrKzeg
105+ skip_symbols : true
106+ on :
107+ # Only publish from the master branch
108+ branch : master
109+ # Publish NuGet packages
110+ - provider : NuGet
111+ name : production
112+ api_key :
113+ secure : hd7kH5D5DJr+IpC+9zAklVm9r5Pm0Ku0RbMaA7DmReouBhExmFBPTVe+rWtl9zRa
114+ on :
115+ # Only publish from the master branch
116+ branch : master
117+ # Only publish if the trigger was a Git tag
118+ # git tag v0.1.0-beta
119+ # git push origin --tags
120+ appveyor_repo_tag : true
99121
100122# ---------------------------------#
101123# cache configuration #
0 commit comments