mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 15:25:49 +00:00
Set up CI with Azure Pipelines
[skip ci]
This commit is contained in:
parent
4148fc9eb3
commit
77bb6278bd
1 changed files with 29 additions and 0 deletions
29
azure-pipelines.yml
Normal file
29
azure-pipelines.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Starter pipeline
|
||||
- task: GitHubRelease@1
|
||||
inputs:
|
||||
gitHubConnection: 'github.com_MaruthiShankarG'
|
||||
repositoryName: 'MaruthiShankarG/spring-petclinic'
|
||||
action: 'create'
|
||||
target: '$(Build.SourceVersion)'
|
||||
tagSource: 'gitTag'
|
||||
title: 'Sample'
|
||||
changeLogCompareToRelease: 'lastFullRelease'
|
||||
changeLogType: 'commitBased'
|
||||
# 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:
|
||||
- main
|
||||
|
||||
pool:
|
||||
vmImage: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- script: echo Hello, world!
|
||||
displayName: 'Run a one-line script'
|
||||
|
||||
- script: |
|
||||
echo Add other tasks to build, test, and deploy your project.
|
||||
echo See https://aka.ms/yaml
|
||||
displayName: 'Run a multi-line script'
|
Loading…
Reference in a new issue