Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Deploy applications and infrastructure to Azure using Copilot-guided workflows and Azure MCP
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/cicd/examples/azdo-multistage.yml
1stages:2- stage: Dev3jobs:4- deployment: DeployDev5environment: dev6strategy:7runOnce:8deploy:9steps:10- task: AzureCLI@211inputs:12azureSubscription: 'azure-dev'13scriptType: 'bash'14inlineScript: azd up --no-prompt --environment dev1516- stage: Prod17dependsOn: Dev18jobs:19- deployment: DeployProd20environment: prod # Configure approval in Azure DevOps21strategy:22runOnce:23deploy:24steps:25- task: AzureCLI@226inputs:27azureSubscription: 'azure-prod'28scriptType: 'bash'29inlineScript: azd up --no-prompt --environment prod30