-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
70 lines (55 loc) · 1.64 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
# See http://www.appveyor.com/docs/appveyor-yml for reference
#---------------------------------#
# environment configuration #
#---------------------------------#
os: Visual Studio 2017
install:
- ps: Install-Product node 10
#---------------------------------#
# build configuration #
#---------------------------------#
cache:
- '%APPDATA%\npm-cache'
build_script:
- ps: .\build.ps1 -pack
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
- path: artifacts/*
#---------------------------------#
# tests configuration #
#---------------------------------#
# we run tests explicitly as part of the build script
test: off
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy:
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: Y4NUwAvYgYtcbINdDt3gWjeKKXYMjw2AU1dIRLC4TvroVT46afylm3fIrHZ0Tf6N
artifact: artifacts/*
draft: false
prerelease: false
on:
appveyor_repo_tag: true
# MyGet
- provider: NuGet
server: https://www.myget.org/F/nfig/api/v2/package
symbol_server: https://www.myget.org/F/nfig/symbols/api/v2/package
api_key:
secure: 75kfQhijF72yzBF6A52uS7bdmHkTSwhUjbbQDBRfp2p41ALHa694NrodnIglIHPL
artifact: /artifacts/.*\.nupkg/
skip_symbols: false
on:
branch: master
# NuGet.org
- provider: NuGet
api_key:
secure: 0mIymJ7rdtMSl8ZBhx1laE3yQgQq+IUiSUpBtE9PJ3ujbW/lutCMxmsbEvK0dgAW
artifact: /artifacts/.*\.nupkg/
skip_symbols: false
on:
appveyor_repo_tag: true