-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
42 lines (42 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
33
34
35
36
37
38
39
40
41
42
version: 1.0.{build}
init:
- git config --global core.autocrlf input
configuration: Release
image:
- Visual Studio 2017
- Ubuntu1804
install:
pwsh: >-
dotnet --info;
New-Item -ItemType Directory tools;
Push-Location tools;
dotnet tool install --tool-path . Cake.Tool;
Pop-Location;
./tools/dotnet-cake ./build.cake --target=Restore
build_script:
pwsh: >-
./tools/dotnet-cake ./build.cake --configuration=Release
artifacts:
- path: "nupkg/*.nupkg"
name: NuGetPackages
nuget:
project_feed: true
deploy:
- provider: NuGet
api_key:
secure: USf9BzS6bwVyBeXQOpFwez/24oGlRysyysWC4WTFHGeIkmcUdcTs3HM2E4CSDxiI
on:
APPVEYOR_REPO_TAG: true
branch: master
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
artifact: NuGetPackages
- provider: GitHub
auth_token:
secure: MFZg3Ryx8cZ9XWIf8qvSE+48pmQc2LPAcPiRQ7bUtPRKj4mXvn+mtZVzPV7tQyX1
on:
APPVEYOR_REPO_TAG: true
branch: master
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
artifact: NuGetPackages
prerelease: false
draft: true