-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
83 lines (73 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
resources:
- repo: self
trigger:
tags:
include:
- "*"
branches:
include:
- main
variables:
buildConfiguration: "Release"
stages:
- stage: build
displayName: Build
variables:
- group: "Global"
jobs:
- job: Build
pool:
vmImage: "windows-latest"
steps:
- task: SonarCloudPrepare@1
displayName: "Prepare SonarCloud Analysis"
inputs:
SonarCloud: "SC"
organization: "$(SC_ORGANIZATION)"
scannerMode: "MSBuild"
projectKey: "Etch.OrchardCore.OutputCache"
projectName: "Etch.OrchardCore.OutputCache"
- task: tmarkovski.projectversionasvariable.versionintovariable.projectversionasvariable@1
displayName: "Get Project Version as variables from Etch.OrchardCore.OutputCache.csproj"
inputs:
path: ./Etch.OrchardCore.OutputCache.csproj
- task: DotNetCoreCLI@2
displayName: "Build module"
inputs:
arguments: "-c $(BuildConfiguration)"
projects: "./Etch.OrchardCore.OutputCache.csproj"
- task: SonarCloudAnalyze@1
displayName: "Run SonarCloud Analysis"
- task: DotNetCoreCLI@2
displayName: "dotnet pack"
inputs:
command: pack
packagesToPack: "./Etch.OrchardCore.OutputCache.csproj"
versioningScheme: byEnvVar
versionEnvVar: "VERSION_MAJORMINORPATCH"
- task: PublishPipelineArtifact@0
displayName: "Publish Pipeline Artifact"
inputs:
targetPath: "$(Build.ArtifactStagingDirectory)"
- task: SonarCloudPublish@1
displayName: "Publish SonarCloud Results"
- stage: publish
displayName: NuGet Publish
dependsOn: build
condition: and(succeeded(), startsWith(variables['build.sourceBranch'], 'refs/tags/'))
jobs:
- job: Publish
pool:
vmImage: "windows-latest"
steps:
- task: DownloadPipelineArtifact@2
inputs:
source: "current"
path: "$(Pipeline.Workspace)"
- task: NuGetCommand@2
displayName: "NuGet push"
inputs:
command: push
packagesToPush: "$(Pipeline.Workspace)/**/drop/*.nupkg"
nuGetFeedType: external
publishFeedCredentials: "NuGet"