forked from TurnerSoftware/CacheTower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
45 lines (39 loc) · 1.08 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
version: 'Build {build}'
image: Visual Studio 2019
skip_branch_with_pr: true
services:
- mongodb
install:
- choco install opencover.portable codecov
- choco install Memurai-Developer --version 2.0.0
- ps: .\build\dotnet-install.ps1 -Version 3.0.100
build_script:
- ps: .\build.appveyor.ps1
test: false
artifacts:
- path: '.\build-artifacts\*'
deploy:
- provider: NuGet
artifact: /.*nupkg/
api_key:
secure: QNfyCsBxCLb4iGmaRd2ep7yYY3RMJKw54B7p+ZcFDo5pb8KnWM0ULl4ml2u38s/w
on:
APPVEYOR_REPO_TAG: true
- provider: NuGet
server: https://nuget.pkg.github.com/TurnerSoftware/index.json
artifact: /.*\.nupkg/
skip_symbols: true
username: TurnerSoftware
api_key:
secure: XnTMWCpraeRGwQ/HGCQIneJDAIIsF7MypVnaShycKC95P3+IA0MF+qXV16c8/5jg
on:
APPVEYOR_REPO_TAG: true
- provider: GitHub
artifact: /.*nupkg/
draft: true
release: $(APPVEYOR_REPO_TAG_NAME)
description: 'TODO'
auth_token:
secure: 8WGv8noklaCJAQEBpcs+VShk/Hql5zbyx0VPhMvzUw0RcG7rAd2KxKIh4gazXlBi
on:
APPVEYOR_REPO_TAG: true