-
Notifications
You must be signed in to change notification settings - Fork 40
/
appveyor.yml
47 lines (46 loc) · 1.14 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
# configuration for "master" branch
-
branches:
only:
- master
image: Visual Studio 2017
platform: Any CPU
configuration: Release
build_script:
- ps: ./build.ps1 Build
test_script:
- ps: ./build.ps1 RunTests
- ps: ./build.ps1 CreateNuget
artifacts:
- path: build/nuget/*.nupkg
name: nuget
deploy:
provider: NuGet
api_key:
secure: MDy+BPQGSr14yFXozwVy+08y1RbLv35gL9I/5Ao5nLfYrnj7zX+cJLXfeb8ajyHh
skip_symbols: false
artifact: /.*\.nupkg/
# configuration for all branches starting from "dev"
-
branches:
only:
- dev
image: Visual Studio 2017
platform: Any CPU
configuration: Release
build_script:
- ps: ./build.ps1 Build
test_script:
- ps: ./build.ps1 RunTests
- ps: ./build.ps1 CreateNuget
artifacts:
- path: build/nuget/*.nupkg
name: nuget
deploy:
provider: NuGet
server: https://www.myget.org/F/akkadotnet-contrib/api/v2/package
api_key:
secure: yoMgcchmDuXbvT90bgrUTOUNYgAId6QI0nofIOtnlfWzMjDEWfOqNqqTGPY+02M+
skip_symbols: false
symbol_server: https://www.myget.org/F/akkadotnet-contrib/symbols/api/v2/package
artifact: /.*\.nupkg/