-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (27 loc) · 1.04 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
#-------------------------------#
# environment configuration #
#-------------------------------#
version: 0.1.{build}
skip_commits:
message: /update readme.*|update Version.*|update docs.*|update appveyor.*/
os: WMF 5
install:
- ps: Install-PackageProvider -Name NuGet -Confirm:$false -Force -ErrorAction Stop | Out-Null
- ps: Install-Module -Name Pester, PSScriptAnalyzer, PlatyPS -Confirm:$false -Force -ErrorAction SilentlyContinue | Out-Null
- ps: Install-Module -Name posh-git -Force -ErrorAction SilentlyContinue | Out-Null
environment:
PSGallery_Api_Key:
secure: x46YcevxX8H4vRAGR8G+4j8hWLMEzdHLPPddfCniu9KBhk16qew/E5IiP5Iw8NHm
GitHubKey:
secure: dk1CytMp3q6h/sDjB943EOCcvlNetD7Rqs/bDRxAJm25irQgt4a9nrP4LrEvtTCQ
build: false
#-------------------------------#
# build & test configuration #
#-------------------------------#
build_script:
- ps: . ./build/build.ps1
#-------------------------------#
# deployment configuration #
#-------------------------------#
deploy_script:
- ps: . ./build/deploy.ps1