-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathappveyor.yml
70 lines (53 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
#---------------------------------#
# Project Build Configuration #
#---------------------------------#
# version format
version: 1.2.{build}
# branches to build
branches:
only:
- master
- develop
# do build, when tags pushed (GitHub only)
skip_tags: false
# fetch repository as zip archive
shallow_clone: true
#---------------------------------#
# Environment Configuration #
#---------------------------------#
# environment variables
environment:
BUILD_TYPE: ci
#---------------------------------#
# Build Configuration #
#---------------------------------#
# build platforms
platform: Any CPU
# build configuration
configuration: Release
build:
project: Signature.sln
parallel: true
verbosity: normal
# create output ZIP (absolute paths are ignored in produced outcome)
after_build:
7z a Signature-bin.zip %APPVEYOR_BUILD_FOLDER%\src\bin\%CONFIGURATION%\Signature.exe
test: off
#---------------------------------#
# Artifacts Configuration #
#---------------------------------#
artifacts:
- path: Signature-bin.zip
#---------------------------------#
# Deployment Configuration #
#---------------------------------#
deploy:
# Deploy to GitHub Releases
- provider: GitHub
release: v$(appveyor_build_version)
draft: false
prerelease: false
description: 'Official release v$(appveyor_build_version) of the **CodeTitans Signature** utility'
on:
branch: master
appveyor_repo_tag: true