From 9ec6ef08e10ffa98a71b0eabcb4d3b945e1e2ef4 Mon Sep 17 00:00:00 2001 From: Kristen Womack <5034778+kristenwomack@users.noreply.github.com> Date: Wed, 30 Jul 2025 10:38:33 -0500 Subject: [PATCH] Update azd-deployment-infra.yml Removing the old azd container https://github.com/Azure/azure-dev/discussions/5490 cc: @danieljurek --- .github/workflows/azd-deployment-infra.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/azd-deployment-infra.yml b/.github/workflows/azd-deployment-infra.yml index 5376986..02dd6cd 100644 --- a/.github/workflows/azd-deployment-infra.yml +++ b/.github/workflows/azd-deployment-infra.yml @@ -22,8 +22,7 @@ permissions: jobs: build: runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/azure-dev-cli-apps:latest + env: AZURE_CLIENT_ID: ${{ vars.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ vars.AZURE_TENANT_ID }} @@ -32,6 +31,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + + - name: Install azd + uses: Azure/setup-azd@v2 - name: Install dependent tools run: | @@ -63,4 +65,4 @@ jobs: env: AZURE_ENV_NAME: ${{ vars.AZURE_ENV_NAME }} AZURE_LOCATION: ${{ vars.AZURE_LOCATION }} - AZURE_SUBSCRIPTION_ID: ${{ vars.AZURE_SUBSCRIPTION_ID }} \ No newline at end of file + AZURE_SUBSCRIPTION_ID: ${{ vars.AZURE_SUBSCRIPTION_ID }}