Last active
February 12, 2020 13:14
-
-
Save ivangeorgiev/c075c2b47d56edf338aa46ccb78af1f5 to your computer and use it in GitHub Desktop.
Azure Pipelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stages: | |
- stage: HelloWorld | |
displayName: Hello world | |
jobs: | |
- job: SayHello | |
pool: | |
vmImage: 'ubuntu-latest' | |
steps: | |
- powershell: | | |
Write-Host "Hello world" | |
displayName: Saying Hi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment