forked from dnSpy/dnSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
34 lines (32 loc) · 960 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
31
32
33
34
version: x.x.{build}
image: Visual Studio 2019
configuration: Release
install:
- cmd: >-
git submodule update --init --recursive
appveyor DownloadFile https://dot.net/v1/dotnet-install.ps1
powershell -NoLogo -NoProfile -File dotnet-install.ps1 -Version 3.0.100-preview7-012821 -InstallDir "%ProgramFiles%\dotnet" -Architecture x64
build_script:
- cmd: build.cmd
test: off
artifacts:
- path: dnSpy/dnSpy/bin/Release/net472
name: dnSpy-net472
- path: dnSpy/dnSpy/bin/Release/netcoreapp3.0/win-x86/publish
name: dnSpy-netcore-win32
- path: dnSpy/dnSpy/bin/Release/netcoreapp3.0/win-x64/publish
name: dnSpy-netcore-win64
deploy:
- provider: GitHub
description: New release
on:
APPVEYOR_REPO_TAG: true
auth_token:
secure: A8Xfg1Sr7/XmTlvOyNEBQVwMARF+uyigNNJXQYq4pQFaR3Z3x0iaXGZMLlvA0oTO
notifications:
- provider: Email
to:
on_build_success: false
on_build_failure: true
on_build_status_changed: false