How can one update an Azure Batch application with a task in a build pipeline on AzureDevOps?
Asked
Active
Viewed 654 times
-1
-
1This document should give you a brief overview of using a build pipeline to upload Applications to Batch with multiple different versions: https://learn.microsoft.com/en-us/azure/batch/batch-ci-cd – brklein May 29 '19 at 15:33
1 Answers
0
You can use the Azure CLI task (use task version 1.0 which is based on the 2.0 az cli) in your pipeline and use the az batch application commands to update your Application Packages.

fpark
- 2,304
- 2
- 14
- 21
-
It's actually the `az batch application package create` (even though you only update). – participant Jun 03 '19 at 14:57