Skip to content

Commit be9010e

Browse files
authored
Add MyGet package provider to consume the daily builds. (#566)
1 parent 5196aa9 commit be9010e

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

appveyor.yml

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#version should be only changed with RELEASE eminent, see RELEASE.md
22

3-
version: 2.7.83-beta-{build}
3+
version: 2.7.84-beta-{build}
44

55
image: Visual Studio 2019
66

77
clone_depth: 1
88
pull_requests:
9-
do_not_increment_build_number: true
9+
do_not_increment_build_number: false
1010

1111
init:
1212
- ps: |
@@ -15,8 +15,9 @@ init:
1515
if ($env:APPVEYOR_REPO_TAG -eq "true") {
1616
$ver = $env:APPVEYOR_REPO_TAG_NAME
1717
if($ver.StartsWith("v") -eq $true) { $ver = $ver.Substring(1) }
18-
Update-AppveyorBuild -Version $ver
19-
}
18+
Update-AppveyorBuild -Version $ver
19+
}
20+
- ps: Write-Host "APPVEYOR_BUILD_VERSION='$env:APPVEYOR_BUILD_VERSION'" -ForegroundColor Yellow
2021

2122
environment:
2223
matrix:
@@ -57,3 +58,12 @@ deploy:
5758
artifact: 'NuGetPackages'
5859
on:
5960
APPVEYOR_REPO_TAG: true
61+
62+
#myget
63+
- provider: NuGet
64+
server: https://www.myget.org/F/commandlineparser/api/v2/package
65+
api_key:
66+
secure: ltHh/DsAk+Y7qbJwzUO4+i1U+7uGTLVYXTdW0+Rk2z7jqj5DDNNlih9J8K7bU4bH
67+
artifact: 'NuGetPackages'
68+
symbol_server: https://www.myget.org/F/commandlineparser/symbols/api/v2/package
69+

0 commit comments

Comments
 (0)