This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
forked from tommarien/NHibernate.ByteCode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
73 lines (62 loc) · 1.65 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
69
70
71
72
73
image: Visual Studio 2017
# Tests
test: off
assembly_info:
# We'll version the binaries and the NuGet package in the build script
patch: false
skip_commits:
files:
- .gitignore
- LICENSE
- README.md
- GitVersion.yml
- appveyor.yml
force_https_clone: true
#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- master
- /release/.*/
- /hotfix/.*/
install:
- choco install gitversion.portable -pre -y
before_build:
- ps: gitversion $env:APPVEYOR_BUILD_FOLDER /l console /output buildserver /nofetch /b $env:APPVEYOR_REPO_BRANCH
build_script:
- ps: .\build.ps1 -Script setup.cake -Verbosity Diagnostic
artifacts:
- path: '*.nupkg'
name: Nuget Package
type: NugetPackage
notifications:
- provider: Slack
auth_token:
secure: EM7e9Oq86PmPk4/CjWAuPAXGvEOETQIMb9+KCibIzF1a9BQGlNorpelIPBiP4QmNO8yGhvlYA+i8i+0j4f81M/izAgv7Zf7ULWtkr/UHFnc=
channel: '#dev-appveyor'
on_build_success: true
on_build_failure: true
on_build_status_changed: true
deploy:
- provider: Environment
name: myget
on:
appveyor_repo_tag: true
- provider: Environment
name: AppveyorNuget
on:
appveyor_repo_tag: true
- provider: GitHub
description: "Appveyor release"
tag: $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: ipJ+t1wwBZhYlH5y/0Wt5pTM9zF/uYq5c+4JMlVGkvkUSo5Ugou/P5KMn7XxOPE0
artifacts: /.*\.nupkg/
draft: false
prerelease: false
on:
APPVEYOR_REPO_TAG: true
skip_branch_with_pr: true