Skip to content

Instantly share code, notes, and snippets.

@karm435
Created November 27, 2020 01:54
Show Gist options
  • Save karm435/8c28cb32c4f96d889bde9c19fafef84b to your computer and use it in GitHub Desktop.
Save karm435/8c28cb32c4f96d889bde9c19fafef84b to your computer and use it in GitHub Desktop.
Azure Starter Pipeline
# 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:
- master
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'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment