diff --git a/.azdo/pipelines/azure-dev.yml b/.azdo/pipelines/azure-dev.yml index 80b9160..153b036 100644 --- a/.azdo/pipelines/azure-dev.yml +++ b/.azdo/pipelines/azure-dev.yml @@ -9,10 +9,18 @@ trigger: pool: vmImage: ubuntu-latest -# Use azd provided container image that has azd, infra, multi-language build tools pre-installed. -container: mcr.microsoft.com/azure-dev-cli-apps:latest - steps: + + - task: setup-azd@1 + displayName: Install azd +# If you can't install above task in your organization, you can comment it and uncomment below task to install azd +# - task: Bash@3 +# displayName: Install azd +# inputs: +# targetType: 'inline' +# script: | +# curl -fsSL https://aka.ms/install-azd.sh | bash + - pwsh: | azd config set auth.useAzCliAuth "true" displayName: Configure AZD to Use AZ CLI Authentication.