-
Notifications
You must be signed in to change notification settings - Fork 2
/
azure-pipelines.yml
93 lines (82 loc) · 2.69 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
84
85
86
87
88
89
90
91
92
93
resources:
- repo: self
trigger:
tags:
include:
- "*"
branches:
include:
- main
variables:
buildConfiguration: "Release"
VersionNumber: "1.0.0"
stages:
- stage: build
displayName: Build
variables:
- group: "Global"
jobs:
- job: Build
pool:
vmImage: "windows-latest"
steps:
- script: |
echo ##vso[task.setvariable variable=VersionNumber;]$(Build.SourceBranchName)
condition: startsWith(variables['build.sourceBranch'], 'refs/tags/')
- task: SonarCloudPrepare@1
displayName: "Prepare SonarCloud Analysis"
inputs:
SonarCloud: "SC"
organization: "$(SC_ORGANIZATION)"
scannerMode: "MSBuild"
projectKey: "Etch.OrchardCore.ContextualEdit"
projectName: "Etch.OrchardCore.ContextualEdit"
- task: replacetokens@5
inputs:
rootDirectory: '$(System.DefaultWorkingDirectory)'
targetFiles: |
"**/*Manifest.cs"
"**/*Etch.OrchardCore.ContextualEdit.csproj"
actionOnMissing: "fail"
tokenPrefix: "$("
tokenSuffix: ")"
writeBOM: false
encoding: 'utf-8'
- task: DotNetCoreCLI@2
displayName: "Build module"
inputs:
arguments: "-c $(BuildConfiguration)"
projects: "./Etch.OrchardCore.ContextualEdit.csproj"
- task: SonarCloudAnalyze@1
displayName: "Run SonarCloud Analysis"
- task: DotNetCoreCLI@2
displayName: "dotnet pack"
inputs:
command: pack
packagesToPack: "./Etch.OrchardCore.ContextualEdit.csproj"
- 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"