From 77bb6278bd2627175c3b3dd90e2758ffcc2d8715 Mon Sep 17 00:00:00 2001 From: MaruthiShankarG <160142741+MaruthiShankarG@users.noreply.github.com> Date: Wed, 21 Feb 2024 18:06:56 +0530 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..98344a49a --- /dev/null +++ b/azure-pipelines.yml @@ -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'