forked from libconfuse/libconfuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
36 lines (28 loc) · 821 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
35
36
# .appveyor.yml
# Build version
version: '3.2.4.{build}'
# Use the latest available toolchain
image: Visual Studio 2019
# fetch repository as zip archive
shallow_clone: true
# PRs do not increment the build number
pull_requests:
do_not_increment_build_number: true
build_script:
- ps: ./windows/appveyor/msys2-release
# Do not run unit tests
test: off
# Package artifacts
artifacts:
- path: confuse-${appveyor_build_version}.*
name: confuse-${appveyor_build_version}
# Create a GitHub release for every tag
deploy:
- provider: GitHub
tag: ${appveyor_repo_tag_name}
release: libconfuse-v${appveyor_build_version}
artifact: confuse-${appveyor_build_version}
auth_token:
secure: SlMbFtjdeOozIBfA2n2tFhN1LDJjic3HIlGwhqbGLtwSIqqeS3Rt6Wvb+KqrCm3q
on:
appveyor_repo_tag: true