forked from MvvmCross/MvvmCross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
45 lines (40 loc) · 875 Bytes
/
azure-pipelines.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
trigger:
branches:
include:
- develop
- releases/*
paths:
exclude:
- '**/*.md'
- docs/*
pr:
branches:
include:
- develop
- releases/*
paths:
exclude:
- '**/*.md'
- docs/*
pool:
vmImage: windows-2019
variables:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 3.0.100
- task: DotNetCoreCLI@2
displayName: 'Install SignClient'
inputs:
command: custom
custom: tool
arguments: 'install --tool-path . SignClient'
- task: PowerShell@2
displayName: 'Run Cake Build'
inputs:
targetType: filePath
filePath: .\build.ps1
arguments: "--verbosity=Normal --signing_secret='$(SIGNING_SECRET)' --signing_user='$(SIGNING_USER)' --package_source='$(NUGET_SOURCE)' --package_apikey='$(NUGET_APIKEY)'"