Skip to content

Commit b635538

Browse files
committed
Clean up appveyor.yml file
Define VisualStudioVersion so we don't in the web UI and it can vary between branches.
1 parent b00a9db commit b635538

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

appveyor.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ init:
1111
1212
git config --global user.email [email protected]
1313
environment:
14-
NuGetApiKey:
15-
secure: Ql19CstT9GvFNeSIAjXvgHXZg+/pNaYJ2jVkzde4LT2vwSyjiQgQ+M332wVYtu+r
14+
VisualStudioVersion: 14.0
1615
install:
1716
- ps: >-
1817
npm install npm -g
@@ -26,11 +25,3 @@ build_script:
2625
artifacts:
2726
- path: bin\**\*.nupkg
2827
- path: bin\js\*.tgz
29-
on_success:
30-
- ps: >-
31-
if ($env:NuGetApiKey -and $env:APPVEYOR_REPO_TAG_NAME -match "^v\d") {
32-
Write-Output "Publishing release packages to nuget.org due to pushed tag $env:APPVEYOR_REPO_TAG_NAME"
33-
Get-ChildItem bin\Release\Nerdbank.GitVersioning.NuGet\*.nupkg -exclude *.symbols.nupkg |% {
34-
nuget push $_ -ApiKey $env:NuGetApiKey
35-
}
36-
}

0 commit comments

Comments
 (0)