-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappveyor.yml
More file actions
32 lines (25 loc) · 875 Bytes
/
appveyor.yml
File metadata and controls
32 lines (25 loc) · 875 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
28
29
30
31
32
# See http://www.appveyor.com/docs/appveyor-yml for many more options
#Publish to PowerShell Gallery with this key
environment:
NuGetApiKey:
secure: b/JNhR1gU9PguPtCMCdIJbz//PHtWfBBkSxJF7VEfgIBEcDSGZ0JL2yBPFLqmETV
CBUSERNAME:
secure: T6wKr43pQWdwqW8IZg5OW8GYGU/vGVh5v0rpUlm9tFk=
CBPASSWORD:
secure: tgn9ii+WdYdNNPvVn1D2KA==
# Allow WMF5 (i.e. PowerShellGallery functionality)
os: WMF 5
# Skip on updates to the readme.
# We can force this by adding [skip ci] or [ci skip] anywhere in commit message
skip_commits:
message: /updated readme.*|update readme.*s/
build: false
#Kick off the CI/CD pipeline
test_script:
- ps: . .\build.ps1
# Install NuGet to interact with the PowerShell Gallery
install:
- ps: |
Install-PackageProvider -Name NuGet -Force | Out-Null
Install-Module -Name Pester -Force
Install-Module -Name posh-git -Force