pipeline
This commit is contained in:
parent
993ec1d90b
commit
8c6ce94ab8
36
azure-pipelines.yml
Normal file
36
azure-pipelines.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Starter pipeline
|
||||||
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
||||||
|
# Add steps that build, run tests, deploy, and more:
|
||||||
|
# https://aka.ms/yaml
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
batch: true
|
||||||
|
branches:
|
||||||
|
include:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
|
pool:
|
||||||
|
vmImage: 'ubuntu-latest'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- task: GitVersion@5
|
||||||
|
displayName: 'Git Version'
|
||||||
|
|
||||||
|
- task: DotNetCoreCLI@2
|
||||||
|
inputs:
|
||||||
|
command: 'restore'
|
||||||
|
projects: '**/*.csproj'
|
||||||
|
feedsToUse: 'select'
|
||||||
|
|
||||||
|
- task: DotNetCoreCLI@2
|
||||||
|
inputs:
|
||||||
|
command: 'build'
|
||||||
|
projects: '**/*.csproj'
|
||||||
|
|
||||||
|
- task: DotNetCoreCLI@2
|
||||||
|
inputs:
|
||||||
|
command: 'push'
|
||||||
|
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
|
||||||
|
versioningScheme: 'byEnvVar'
|
||||||
|
versionEnvVar: 'GitVersion.NuGetVersion'
|
Loading…
Reference in New Issue
Block a user