-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
27 lines (20 loc) · 717 Bytes
/
appveyor.yml
File metadata and controls
27 lines (20 loc) · 717 Bytes
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
# See http://www.appveyor.com/docs/appveyor-yml for many more options
image: Visual Studio 2017
#Publish to PowerShell Gallery with this key
environment:
NuGetApiKey:
secure: NbIQ9vEo/6ZsKp4lA2FcYQYQ6BeNAkAtYbDLxQ8QJi2hIbaRVDf3DOrw5M9IMcyQ
# Skip on updates to the readme.
# We can force this by adding [skip ci] or [ci skip] anywhere in commit message
skip_commits:
message: /^(?=.*update)(?=.*readme).*$/
build: off
# Get latest GitVersion
install:
- choco install gitversion.portable --version 4.0.0 -y
# Generate version
before_test:
- ps: '& (Join-Path $env:ChocolateyInstall "bin\GitVersion.exe") /l console /output buildserver'
#Kick off the CI/CD pipeline
test_script:
- ps: . .\Build.ps1