forked from Novicell/Novicell.Examine.ElasticSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
79 lines (65 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
78
79
# version format
version: 0.2.8.{build}
image: Visual Studio 2019
cache:
- packages -> src\**\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
configuration: Release
branches:
only:
- develop
- master
environment:
# Version Suffix
version_suffix: alpha
install:
- ps: .\build\appveyor-semver.ps1
- ps: .\build\check-release-version.ps1
- ps: Update-AppveyorBuild -Version $Env:appveyor_version
assembly_info:
patch: true
file: 'source\Novicell.Examine.ElasticSearch**\AssemblyInfo.*'
assembly_version: '$(appveyor_file_version)'
assembly_file_version: '$(appveyor_file_version)'
assembly_informational_version: '$(mssemver)'
build_script:
- cmd: >-
build-appveyor.cmd
cd..
artifacts:
- path: artifacts\*.nupkg
- path: artifacts\*.zip
deploy:
- provider: NuGet
server: https://nuget.novicell.london/nuget
api_key:
secure: A/xkn1/+F9+HTwGVLEPRFDwDSDMZLJ2zl1AnqsKOoE9tlYio2wrFBUN9BJkZw5aTmNsKy7Yjn6lbS61KSnuXHQ==
skip_symbols: true
artifact: .*\.nupkg
- provider: GitHub
auth_token:
secure: CnPbSuXiCJXBzQur6JGaYPrx/HCnLJljBT3hpyGrBlxK7vTKPWhnG+dlr2H/4f2Q
repository: Novicell/Novicell.Examine.ElasticSearch
artifact: .*\*
draft: true
prerelease: true
on:
branch: development
- provider: GitHub
auth_token:
secure: CnPbSuXiCJXBzQur6JGaYPrx/HCnLJljBT3hpyGrBlxK7vTKPWhnG+dlr2H/4f2Q
repository: Novicell/Novicell.Examine.ElasticSearch
on:
branch: master
- provider: NuGet
api_key:
secure: GUY4h/aeCYTPp8yQDoKS/aqK3PrQzNr8pVMU7zsZ2bSXxPul9WdsaT6as+2ZoEDH
skip_symbols: true
on:
branch: master
notifications:
- provider: Slack
incoming_webhook: https://hooks.slack.com/services/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
channel: tech-nuget-london
on_build_success: true
on_build_failure: true
on_build_status_changed: true