OMDSCloud/azure-pipelines.yml
2023-07-24 08:14:43 +00:00

25 lines
582 B
YAML

# 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:
branches:
include:
- develop
tags:
include:
- 'stage-*'
pool:
vmImage: ubuntu-latest
steps:
- script: echo Checked out $(Build.SourceVersion) tagged with $(Build.SourceBranch)
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'