forked from mcartoixa/NetMonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
68 lines (57 loc) · 1.82 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
# CONDITIONS WHICH TRIGGER OR NOT THE JOBS
trigger:
batch: true
branches:
include:
- master
tags:
include:
- "*"
pr:
- master
### GLOBAL VARIABLES ###
variables:
## ARTIFACTS CONFIGURATION ##
nuGetsArtifactName: 'NetMonkeyNuGets'
buildArtifactName : 'NetMonkeyBuild'
## GENERAL CONFIGURATION ##
solution: 'NetMonkey.Tests.sln'
vmImage: 'windows-2019'
artifactDirLocation: $(System.DefaultWorkingDirectory)
## NUGET PUBLICATION ##
nuGetPackagePatternToPublish: $(artifactPath)/**/*.nupkg
nuGetSource: https://api.nuget.org/v3/index.json
resources:
repositories:
- repository: templates
type: github
name: isogeo/devops-templates
ref: refs/tags/v1.2.5
endpoint: isogeo
stages:
# See templates/wiki for more details about parameters (isogeo/devops-templates repository)
# Mandatory : solution
- template: Net/Pipeline/NuGetsPipelineWithoutPublish.yml@templates
parameters:
solution: $(solution)
nuGetsArtifactName: $(nuGetsArtifactName)
buildArtifactName : $(buildArtifactName)
- stage: 'Publish'
jobs:
- job: 'PublishNuGets'
pool:
vmImage: $(vmImage)
variables:
artifactPath: $(artifactDirLocation)/$(nuGetsArtifactName)
steps:
- template: /Net/Utilities/DownloadNuGetsArtifact.yml@templates
parameters:
nugetVersion: 5.1.0
nuGetsArtifactName: $(nuGetsArtifactName)
artifactDirLocation: $(System.DefaultWorkingDirectory)
- script: nuget push $(nuGetPackagePatternToPublish) -Source $(nuGetSource) -ApiKey $(apikey) -SkipDuplicate -NoSymbols
displayName: 'Publish NuGet packages to www.nuget.org'