-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
55 lines (48 loc) · 1.22 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
version: 3.0.0.{build}
max_jobs: 1
skip_commits:
message: /^docs/
image: Visual Studio 2017
init:
- git config --global core.autocrlf input
clone_depth: 1
cache:
- packages -> **\packages.config
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "3.0.0.{build}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
platform: Any CPU
configuration:
- Release
build:
parallel: false
project: SinsDataConverter.sln
verbosity: minimal
before_build:
- nuget restore
after_build:
- ps: >-
if ($env:APPVEYOR_REPO_TAG -eq "true")
{
Rename-Item "SinsDataConverter.Installer\bin\Release\SinsDataConverter-Installer.msi" "SinsDataConverter-$env:APPVEYOR_REPO_TAG_NAME.msi"
}
else
{
Rename-Item "SinsDataConverter.Installer\bin\Release\SinsDataConverter-Installer.msi" "SinsDataConverter-$env:APPVEYOR_REPO_BRANCH-$env:APPVEYOR_BUILD_VERSION.msi"
}
test: off
artifacts:
- path: '**\*.msi'
deploy:
- provider: GitHub
auth_token:
secure: VqgrP/Fg6/6IUKNvLW5ifXMXDvnMZqfGpeeNvNB4u7Z4bUpW/sXOw7G+L0174GLo
description: ''
artifact: /.*\.msi/
draft: true
prerelease: false
on:
appveyor_repo_tag: true