forked from Code52/carnac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
63 lines (63 loc) · 1.51 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
version: 2.2.{build}
configuration: Release
skip_branch_with_pr: true
skip_tags: false
assembly_info:
patch: false
branches:
only:
- master
- \d*\.\d*\.\d*/
environment:
Version: $(APPVEYOR_BUILD_VERSION)
GithubRepo: $(APPVEYOR_REPO_NAME)
GithubAuthToken:
secure: qgh2y38nOEG/eAnQe0EwNSqMDSXf9akPDwJI5Yasvyiemh5GBbbzkDIleAhGak6i
build_script:
- ps: .\build.ps1 -Configuration Release -Experimental
test:
assemblies:
- '**\Carnac.Tests.dll'
artifacts:
- path: deploy\Chocolatey\*.nupkg
name: ChocoPackage
- path: deploy\GitHub\*.zip
name: ZipPackage
- path: deploy\Squirrel\Releases\*
name: SquirrelPackage
- path: deploy\Checksums\*.txt
name: Checksums
deploy:
- provider: GitHub
auth_token:
secure: qgh2y38nOEG/eAnQe0EwNSqMDSXf9akPDwJI5Yasvyiemh5GBbbzkDIleAhGak6i
artifact: ZipPackage
draft: false
on:
branch: master
APPVEYOR_REPO_TAG: true
- provider: GitHub
auth_token:
secure: qgh2y38nOEG/eAnQe0EwNSqMDSXf9akPDwJI5Yasvyiemh5GBbbzkDIleAhGak6i
artifact: SquirrelPackage
draft: false
on:
branch: master
APPVEYOR_REPO_TAG: true
- provider: GitHub
auth_token:
secure: qgh2y38nOEG/eAnQe0EwNSqMDSXf9akPDwJI5Yasvyiemh5GBbbzkDIleAhGak6i
artifact: Checksums
draft: false
on:
branch: master
APPVEYOR_REPO_TAG: true
- provider: NuGet
server: https://chocolatey.org/
api_key:
secure: sMCceYyOHQxaJMpcWBGmbGkbB6aYToUWm3rqfLv1ZZaeToqM2PAz1or18hnJbon0
skip_symbols: true
artifact: ChocoPackage
on:
branch: master
APPVEYOR_REPO_TAG: true