-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
66 lines (50 loc) · 1.13 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# All branches are debug build on all commits, but are not published
-
version: '{build}'
branches:
except:
- master
- dev
pull_requests:
do_not_increment_build_number: true
configuration: Debug
build_script:
- cmd: build.cmd NuGet
test: off
artifacts:
- path: artifacts\*.nupkg
name: Nuget
# Master and dev branch are release builds
-
version: '{build}'
branches:
only:
- master
- dev
pull_requests:
do_not_increment_build_number: true
configuration: Release
nuget:
disable_publish_on_pr: true
build_script:
- cmd: build.cmd NuGet
test: off
artifacts:
- path: artifacts\*.nupkg
name: Nuget
deploy:
- provider: NuGet
name: develop
server: https://www.myget.org/F/fixiespecdev/api/v2/package
api_key:
secure: u0/+rHTyWZLMHoK0IwptlN6eLVdEUE3TBuIT0oexWzIDNCvM4IyQE7vAPDQRLVsS
skip_symbols: true
on:
branch: dev
- provider: NuGet
name: production
api_key:
secure: rqb2UniaLXwEyM8bKTLzxlmVETPl7JSioUQRw6L9ebqFNmfVZzehlE7ZPAh7hVRR
on:
branch: master
appveyor_repo_tag: true