-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
50 lines (49 loc) · 1.02 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
# build, test and push to NuGet
-
branches:
only:
- master
init:
- git config --global core.autocrlf true
image: Visual Studio 2017
skip_tags: true
version: '{build}'
environment:
NuGetApiKey:
secure: zA+kpGYRXyC/b/zfaoeGec4jTl+Ahc6hLbIeOoZL2hPjp/3M5jPhyD8awfjU5s+6
GitHubToken:
secure: I74wB8tW0coqem3AUmm4Vlo0GZjcm7wq0+yLC9NygN+HDHwBUNWNuhg94hZz3IKl
build_script:
- ps: .\Pask.ps1 Release
artifacts:
- path: .build\output\*.nupkg
deploy: off
test: off
skip_commits:
files:
- appveyor.yml
- LICENSE
- README.md
# configuration for branches
# build and test
-
branches:
except:
- master
image: Visual Studio 2017
init:
- git config --global core.autocrlf true
skip_tags: true
version: '{build}'
build_script:
- ps: .\Pask.ps1 PreRelease
artifacts:
- path: .build\output\*.nupkg
deploy: off
test: off
skip_commits:
files:
- appveyor.yml
- LICENSE
- README.md