-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
58 lines (46 loc) · 1.23 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
# ExFat appveyor.yml script
branches:
only:
- master
skip_commits:
files:
- README.md
version: '{branch}-{build}'
image: Visual Studio 2017
install:
- git submodule update --init --recursive
- echo "" > ExFat.Core\Properties\ProductInfo.cs
- echo "" > ExFat.Core\ExFat.nuspec
- echo "" > ExFat.DiscUtils\ExFat.DiscUtils.nuspec
before_build:
nuget restore
notifications:
provider: Slack
auth_token:
secure: tv8q1S0sKJGnirkiriCf+BEXA1+EyX7TOBtHyp/hBqqpRcB0AofQt99AvR4zTRHz2Bh0XtzFKABzoMZ7bXaCWdFraIoT/52oK/+ktx85fYE=
channel: '#build'
on_build_success: false
on_build_failure: true
on_build_status_changed: true
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
configuration: Release
platform: Any CPU
build:
parallel: true
publish_nuget: false
publish_nuget_symbols: false
verbosity: minimal
project: ExFat.sln
artifacts:
- path: 'ExFat.Core\bin\$(configuration)\*.nupkg'
- path: 'ExFat.DiscUtils\bin\$(configuration)\*.nupkg'
deploy:
provider: NuGet
api_key:
secure: rEYnR9JThbc6x8DdCo1K8+fgsGKzjNKzTZsldXFLYMm/tFPC7JWWvuKpVTrDBd+g
skip_symbols: false
after_test:
ps: Get-ChildItem .\*.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }