-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
30 lines (25 loc) · 866 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
#---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2022
#---------------------------------#
# Custom Build Script #
#---------------------------------#
build: off
test: off
build_script:
- powershell .\bootstrap.ps1 -buildNumber %APPVEYOR_BUILD_NUMBER% -branch "%APPVEYOR_REPO_BRANCH%" -buildPath "%APPVEYOR_BUILD_FOLDER%" -gitHubApiKey "%GitHubAPIKey%" -nuGetApiKey "%NuGetAPIKey%"
#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Allowed list
only:
- main
# GitHub releases create tags, skip builds on tags
skip_tags: true
# skip builds on some types of commits
skip_commits:
message: /^\[chore\]/ # message starts with [chore]
files:
- '**/README.md' # changes to readme files