Last active
October 11, 2021 14:19
-
-
Save ovitente/94acaa97a3f4308419f53550d32edf26 to your computer and use it in GitHub Desktop.
az pipeline run
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
az devops login --organization=https://dev.azure.com/YOUR_ORG/ | |
az devops project list | |
az pipelines list --detect --org=https://dev.azure.com/YOUR_ORG/ --project=YOUR_AZURE_DEVOPS_PROJECT | |
az pipelines run --branch $(git rev-parse --abbrev-ref HEAD) --detect --org=https://dev.azure.com/YOUR_ORG/ --project=YOUR_AZURE_DEVOPS_PROJECT --name=YOUR_PIPELINE_NAME | |
# It will execute pipeline from your current active branch in the terminal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment