forked from FantasticFiasco/mvvm-dialogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
51 lines (41 loc) · 1.31 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
#---------------------------------#
# environment #
#---------------------------------#
image: Visual Studio 2017
install:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-desktop.ps1'))
#---------------------------------#
# build #
#---------------------------------#
build_script:
- cmd: PowerShell -Version 2.0 .\build.ps1
#---------------------------------#
# tests #
#---------------------------------#
test:
assemblies: '**\bin\Release\*Test.dll'
categories:
except:
- Manual
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
- path: '*.nupkg'
name: NuGet
#---------------------------------#
# on finish #
#---------------------------------#
on_finish:
- ps: Get-ChildItem -Path Failed_*.png -Recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
#---------------------------------#
# deploy #
#---------------------------------#
deploy:
provider: NuGet
api_key:
secure: KYoij6c7heYA02+kxssWFS2f0QDISth37e+aK8M/k+jsN7mZNTKfka7VNBFz52ch
skip_symbols: false
artifact: /.*\.nupkg/
on:
appveyor_repo_tag: true