-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.yml
64 lines (54 loc) · 1.47 KB
/
release.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
# Release pipeline
trigger:
tags:
include:
- 'v*'
branches:
exclude:
- master
- dev
pool:
vmImage: windows-latest
steps:
- checkout: self
fetchDepth: 0
- task: gitversion/setup@1
inputs:
versionSpec: '5.x'
- task: gitversion/execute@1
inputs:
useConfigFile: true
configFilePath: GitVersion.yml
- task: JavaToolInstaller@0
inputs:
versionSpec: '11'
jdkArchitectureOption: 'x64'
jdkSourceOption: 'PreInstalled'
- task: DotNetCoreCLI@2
inputs:
command: build
configuration: release
projects: '**/**.sln'
- task: DotNetCoreCLI@2
inputs:
command: test
configuration: release
arguments: --no-restore
projects: '**/*Tests.csproj'
- task: DotNetCoreCLI@2
inputs:
command: 'pack'
configuration: release
arguments: --no-restore
- task: NuGetCommand@2
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg;!$(Build.ArtifactStagingDirectory)/*.Tests.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'AntlrODataCSharpNugetConnection'
# - task: DotNetCoreCLI@2
# inputs:
# command: 'push'
# nuGetFeedType: external
# publishFeedCredentials: 'AntlrODataCSharpNugetConnection'
# searchPatternPush: '$(Build.ArtifactStagingDirectory)/*.nupkg;!$(Build.ArtifactStagingDirectory)/*.Tests.nupkg'