-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
appveyor.yml
61 lines (52 loc) · 1.55 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
#---------------------------------#
# environment #
#---------------------------------#
image: Visual Studio 2022
install:
- ps: |
$logo = (Invoke-WebRequest "https://raw.githubusercontent.com/FantasticFiasco/logo/master/logo.raw").toString()
Write-Host "$logo" -ForegroundColor Green
#---------------------------------#
# build #
#---------------------------------#
build_script:
- cmd: dotnet tool restore
- cmd: dotnet cake .\build\build.cake
#---------------------------------#
# tests #
#---------------------------------#
test:
assemblies:
only:
- '**\*.Test.dll'
categories:
except:
- Manual
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
- path: build\*.*nupkg
name: NuGet
type: NuGetPackage
#---------------------------------#
# deploy #
#---------------------------------#
deploy:
- provider: GitHub
tag: ${APPVEYOR_REPO_TAG_NAME}
release: Release ${APPVEYOR_REPO_TAG_NAME}
description: TODO
auth_token:
secure: FHSFvLFCvMolC510IXqL0UBWOdAhhfRPRFImnVDwivbDePV7qEBlJ8LwnqvuRXDq
artifact: NuGet
draft: true
on:
APPVEYOR_REPO_TAG: true
- provider: NuGet
api_key:
secure: mtPZQg3014zW8UruSbi7ERWdykq8pP/PkAZ5AK7Ht6AmKdMNwieyNkQ1ZxkxQPM+
symbol_server: https://www.nuget.org
skip_symbols: false
on:
APPVEYOR_REPO_TAG: true