We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5016f72 commit f684ff6Copy full SHA for f684ff6
.github/workflows/azure-dev.yml
@@ -6,7 +6,6 @@ on:
6
# Set this to the mainline branch you are using
7
branches:
8
- main
9
- - master
10
11
# GitHub Actions workflow to deploy to Azure using azd
12
# To configure required secrets for connecting to Azure, simply run `azd pipeline config`
@@ -58,6 +57,14 @@ jobs:
58
57
59
- name: Provision Infrastructure
60
run: azd provision --no-prompt
+ env:
61
+ AZURE_ENV_NAME: ${{ vars.AZURE_ENV_NAME }}
62
+ AZURE_LOCATION: ${{ vars.AZURE_LOCATION }}
63
+ AZURE_SUBSCRIPTION_ID: ${{ vars.AZURE_SUBSCRIPTION_ID }}
64
65
- name: Deploy Application
- run: azd deploy --no-prompt
66
+ run: azd deploy --no-prompt
67
68
69
70
0 commit comments