-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
32 lines (27 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
os:
- Visual Studio 2017
configuration:
- Debug
- Release
build:
project: foo_bestversion/foo_bestversion.sln
after_build:
# Zip up the component DLL into a file with .fb2k-component extension, as used by foobar2000
7z a -tzip foo_bestversion.fb2k-component %APPVEYOR_BUILD_FOLDER%\foo_bestversion\%CONFIGURATION%\foo_bestversion.dll
artifacts:
# Capture the component and PDB.
- path: foo_bestversion.fb2k-component
name: foo_bestversion.fb2k-component
- path: foo_bestversion/Release/foo_bestversion.pdb
name: foo_bestversion.pdb
deploy:
description: '' # description is mandatory but empty; will be filled in manually later
provider: GitHub
auth_token:
secure: ezLCE6XZuW7mcQhTUwFbeK2n+QkwQf5jz2U7UzQ3T2IGFbsJtDHUditiljjt43Ih # encrypted token from GitHub
artifact: foo_bestversion.fb2k-component,foo_bestversion.pdb # upload component DLL and PDB
draft: true # draft release; mark released manually
on:
branch: master # release from master branch only
configuration: Release # Release configuration only
appveyor_repo_tag: true # deploy on tag push only