Skip to content

Commit 0214926

Browse files
committed
appveyor.yml - Attempt to fix failing build
Only push nuget packages on tag for now
1 parent 257864e commit 0214926

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

appveyor.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,17 @@ skip_commits:
1010
- '**/*.md'
1111
- '**/*.html'
1212
- '**/*.js'
13-
14-
# .NET Core `*.*proj` files patching:
15-
#dotnet_csproj:
16-
#patch: true
17-
#file: '**\*.csproj'
18-
#version: '{version}'
19-
#version_prefix: '{version}'
20-
#package_version: '{version}'
21-
#assembly_version: '{version}'
22-
#file_version: '{version}'
23-
#informational_version: '{version}'
13+
14+
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
15+
platform: Any CPU
16+
17+
# build Configuration, i.e. Debug, Release, etc.
18+
configuration: Release
2419

2520
build:
2621
project: CefSharp.Extensions.sln
27-
28-
# TODO: Enable Tests
29-
test: Off
22+
# MSBuild verbosity level
23+
verbosity: normal
3024

3125
artifacts:
3226
- path: '**\*.nupkg'
@@ -41,3 +35,6 @@ deploy:
4135
skip_symbols: false
4236
symbol_server: https://www.myget.org/F/cefsharp/api/v2/package
4337
artifact: nupkgfiles
38+
on:
39+
branch: master # release from master branch only
40+
APPVEYOR_REPO_TAG: true # deploy on tag push only

0 commit comments

Comments
 (0)