Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Execute Azure deployments using azd, Terraform, or Bicep with built-in error recovery.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/recipes/cicd/examples/azdo-azd.yml
1trigger:2branches:3include: [main]45pool:6vmImage: 'ubuntu-latest'78stages:9- stage: Deploy10jobs:11- job: DeployToAzure12steps:13- task: setup-azd@01415- task: AzureCLI@216inputs:17azureSubscription: 'azure-service-connection'18scriptType: 'bash'19inlineScript: azd up --no-prompt20env:21AZURE_ENV_NAME: $(AZURE_ENV_NAME)22AZURE_LOCATION: $(AZURE_LOCATION)23