forked from camitz/CloudWatchAppender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
46 lines (45 loc) · 1.16 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
# Great reference: http://www.appveyor.com/docs/appveyor-yml
version: 1.0.{build}
skip_tags: false
configuration: Release
cache:
- packages -> **\packages.config
install:
- ps: .\BuildScripts\install.ps1
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: $(BuildVersion)
assembly_file_version: $(BuildVersion)
assembly_informational_version: $(BuildVersion)
nuget:
account_feed: true
project_feed: true
before_build:
- nuget restore CloudWatchAppender\CloudWatchAppender.sln -verbosity detailed
after_build:
- ps: .\BuildScripts\after_build.ps1
build:
project: CloudWatchAppender\CloudWatchAppender.sln
publish_nuget: true
publish_nuget_symbols: true
verbosity: minimal
artifacts:
- path: CloudWatchAppender.$(BuildVersion).nupkg
name: CloudWatchAppender
deploy:
- provider: GitHub
auth_token:
secure: ioxuMU09l+pPETzGYBz4oElm1jw68rlSf81AU5KcDc4VAzsgYfB/iqvGhPlHfxoe
artifact:
prerelease: false
on:
branch: master
IsGithubRelease: true
- provider: NuGet
api_key:
secure: nJSdlo2bRHEauK9vfPjJvhao5uLnsuaDIdebgN6kmNVW0jGQBxwxhTUJPg0/nxwg
artifact: /.*\.nupkg/
on:
branch: master
IsGithubRelease: true