Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
508 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I don't want PowerShell script of REST API. I just want a dedicated pipeline task to achieve this goal Say I have pipeline A. I want to run pipeline B which then triggers pipeline A to run.
You can leverage this pipeline tasks. Make sure you have the extension installed in your Azure DevOps Organization https://marketplace.visualstudio.com/items?itemName=benjhuser.tfs-extensions-build-tasks
I have tested it and I can confirm it is woking as expected.
Let me know if you need further information.
- task: TriggerBuild@4
inputs:
definitionIsInCurrentTeamProject: true
buildDefinition: '<Build number/name>'
queueBuildForUserThatTriggeredBuild: true
ignoreSslCertificateErrors: false
useSameSourceVersion: false
useCustomSourceVersion: false
useSameBranch: true
waitForQueuedBuildsToFinish: false
storeInEnvironmentVariable: false
authenticationMethod: 'Personal Access Token'
password: '<PAT>'
enableBuildInQueueCondition: false
dependentOnSuccessfulBuildCondition: false
dependentOnFailedBuildCondition: false
checkbuildsoncurrentbranch: false
failTaskIfConditionsAreNotFulfilled: false