-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
53 lines (42 loc) · 1.02 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
version: 1.0.0.{build}
configuration: Release
platform: Any CPU
clone_depth: 1
branches:
only:
- master
cache: packages -> **\packages.config
before_build:
- cmd: nuget restore
build:
verbosity: minimal
after_build:
- cmd: del Windows\bin\%CONFIGURATION%\*.pdb
test: off
assembly_info:
patch: true
file: Windows\Properties\AssemblyInfo.cs
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
artifacts:
- path: Windows\bin\$(configuration)
name: ClipUp-$(appveyor_build_version)
deploy:
- provider: GitHub
auth_token:
secure: Xg+sCmYE34JMq6uykYa4P9pS4RjGS/V11cA+ffcd6RJQQ+WG+y6hXSaNx/av3edk
artifact: ClipUp-$(appveyor_build_version)
force_update: true
on:
appveyor_repo_tag: true
- provider: BinTray
username: joebiellik
subject: joebiellik
repo: clipup
package: ClipUp
api_key:
secure: YIZzHQi4FWe0NgWrs98krkGKWd+t8A1Xo5SVF6BTnu7KMu94AJBnmZhDTTAZPchj
artifact: ClipUp-$(appveyor_build_version)
publish: true
override: true