christiansparre / HelloContainerApps

Simple sample showing that Microsoft Orleans works on Azure Container Apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Azure Pipeline Yaml

JoeGarzaEmerson opened this issue · comments

Can you share the azure.pipelines.yml?

Im guessing this?

`
trigger:

  • master

name: Deploy Bicep files

variables:
vmImageName: 'ubuntu-latest'

azureServiceConnection: ''
resourceGroupName: 'exampleRG'
location: ''
templateFile: './main.bicep'
pool:
vmImage: $(vmImageName)

steps:

  • task: AzureResourceManagerTemplateDeployment@3
    inputs:
    deploymentScope: 'Resource Group'
    azureResourceManagerConnection: '$(azureServiceConnection)'
    action: 'Create Or Update Resource Group'
    resourceGroupName: '$(resourceGroupName)'
    location: '$(location)'
    templateLocation: 'Linked artifact'
    csmFile: '$(templateFile)'
    overrideParameters: '-storageAccountType Standard_LRS'
    deploymentMode: 'Incremental'
    deploymentName: 'DeployPipelineTemplate'
    `

Looks about right. Never played around with deploying bicep in Azure Pipelines