forked from KevinDockx/JsonPatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
30 lines (30 loc) · 967 Bytes
/
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
version: 0.7.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
configuration: Release
platform: Any CPU
clone_depth: 10
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: nuget restore src/Marvin.JsonPatch.sln
build:
project: src/Marvin.JsonPatch.sln
verbosity: minimal
deploy_script:
- cmd: nuget pack src/Marvin.JsonPatch/Marvin.JsonPatch.nuspec -Version %appveyor_build_version%
- cmd: nuget push JsonPatch.%appveyor_build_version%.nupkg welovecats -Source http://nerdcatsnugetserver.azurewebsites.net/api/v2/package -verbosity detailed
notifications:
- provider: Slack
incoming_webhook: https://hooks.slack.com/services/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
channel: '#builds'
on_build_success: true
on_build_failure: true
on_build_status_changed: true