File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ jobs:
25
25
# Log into Azure
26
26
- uses : azure/login@v1
27
27
with :
28
- client-id : ${{ secrets .AZURE_CLIENT_ID }}
29
- tenant-id : ${{ secrets .AZURE_TENANT_ID }}
30
- subscription-id : ${{ secrets .AZURE_SUBSCRIPTION_ID }}
28
+ client-id : ${{ env .AZURE_CLIENT_ID }}
29
+ tenant-id : ${{ env .AZURE_TENANT_ID }}
30
+ subscription-id : ${{ env .AZURE_SUBSCRIPTION_ID }}
31
31
enable-AzPSSession : true
32
32
33
33
# Deploy ARM template
34
34
- name : Run ARM deploy
35
35
uses : azure/arm-deploy@v1
36
36
with :
37
- subscriptionId : ${{ secrets .AZURE_SUBSCRIPTION_ID }}
38
- resourceGroupName : ${{ secrets .AZURE_RG }}
37
+ subscriptionId : ${{ env .AZURE_SUBSCRIPTION_ID }}
38
+ resourceGroupName : ${{ env .AZURE_RG }}
39
39
template : ./InfrastructureAsCode/main.bicep
40
40
parameters : environment=${{ github.event.inputs.appenv }}
You can’t perform that action at this time.
0 commit comments