We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0483f0 commit 04dd5ddCopy full SHA for 04dd5dd
1 file changed
.github/workflows/deploy-v2-windows.yml
@@ -285,6 +285,17 @@ jobs:
285
# Azure CLI is pre-installed on Windows GitHub runners
286
az --version # Verify installation
287
288
+ - name: Try setup-azd action
289
+ uses: Azure/setup-azd@v1.0.0
290
+ continue-on-error: true
291
+
292
+ - name: If azd missing, install via winget
293
+ if: ${{ failure() || steps.setup-azd.outcome != 'success' }}
294
+ run: |
295
+ winget install microsoft.azd --silent --accept-package-agreements --accept-source-agreements
296
+ - name: Verify azd
297
+ run: azd --version
298
299
- name: Login to Azure
300
shell: bash
301
run: |
0 commit comments