-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
appveyor.yml
50 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
48
49
50
# configuration for "master" branch
-
configuration: Release
branches:
only:
- master
version: 1.0.{build}
environment:
GITHUB_USERNAME:
secure: 0Q9MvUId56SizmZwCf0cgg==
GITHUB_TOKEN:
secure: R3xA9iMXfUUtFd3wuL38pcDa0/BjjpBvNcGShr5LRibZtBoOVSH47Jat75rwaGur
NUGET_SOURCE: https://www.nuget.org/api/v2/package
NUGET_APIKEY:
secure: 0g2AqQxgiAIFhqoJbbmEPrJa15Z8U5xYT6vQe43Gocuxbjw74hBAIKbU+Cj65UNd
build_script:
- ps: >-
./build.cmd
artifacts:
- path: artifacts/*
- path: '**/bin/*'
test: off
# configuration for "develop" branch
-
configuration: Development
branches:
except:
- master
version: 1.0.{build}
environment:
NUGET_SOURCE: https://www.myget.org/F/akavache/api/v2/package
NUGET_APIKEY:
secure: YP/3KxC2ffsuHNaolPXj66JVGzSjON9FcR2S2OEzn9c6SV14oPzUh1ySyeT+G+aA
build_script:
- ps: >-
./bootstrap.ps1
./build.cmd
artifacts:
- path: artifacts/*
- path: '**/bin/*'
test: off
# "fall back" configuration for all other branches
# no "branches" section defined
# do not deploy at all
-
configuration: Development