File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 74
74
- name : Login Container Registry
75
75
uses : docker/login-action@v3.0.0
76
76
id : registry_login
77
- # if: github.event_name != 'pull_request'
77
+ if : github.event_name != 'pull_request'
78
78
with :
79
79
registry : ${{ inputs.registry_uri }}
80
80
username : ${{ secrets.USER_NAME }}
@@ -101,7 +101,7 @@ jobs:
101
101
with :
102
102
context : ${{ inputs.working_directory }}
103
103
file : ${{ inputs.working_directory }}/Dockerfile
104
- push : true # ${{ github.event_name != 'pull_request' }}
104
+ push : ${{ github.event_name != 'pull_request' }}
105
105
tags : ${{ steps.metadata.outputs.tags }}
106
106
labels : ${{ steps.metadata.outputs.labels }}
107
107
cache-from : type=gha
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ resource "azapi_resource" "function" {
69
69
storageAccountRequired = false
70
70
vnetContentShareEnabled = true
71
71
vnetImagePullEnabled = false # Set to 'true' when pulling image from private Azure Container Registry
72
- vnetRouteAllEnabled = true
72
+ vnetRouteAllEnabled = true
73
73
virtualNetworkSubnetId = azapi_resource.subnet_function.id
74
74
siteConfig = {
75
75
# autoHealEnabled = true
You can’t perform that action at this time.
0 commit comments