File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
pkg/fixtures/workflows/github/helm/.github/workflows
template/workflows/helm/.github/workflows Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,6 @@ jobs:
148148 - name : Deploy application on public cluster
149149 if : ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER != 'true' }}
150150 env :
151- WAIT_FLAG : ${{ (env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets') && '--wait') || '' }} # don't wait for fleet hubs
151+ WAIT_FLAG : ${{ (env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets') && '--wait' || '' }} # don't wait for fleet hubs
152152 run : |
153153 helm upgrade ${{ env.WAIT_FLAG }} -i -f ${{ env.CHART_OVERRIDE_PATH }} --set ${{ env.CHART_OVERRIDES }} --set image.tag=${{ github.sha }} automated-deployment ${{ env.CHART_PATH }} --namespace ${{ env.NAMESPACE }}
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ jobs:
148148 - name : Deploy application on public cluster
149149 if : ${{ steps.isPrivate.outputs.PRIVATE_CLUSTER != 'true' }}
150150 env :
151- WAIT_FLAG : ${{ (env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets') && '--wait') || '' }} # don't wait for fleet hubs
151+ WAIT_FLAG : ${{ (env.CLUSTER_RESOURCE_TYPE != 'Microsoft.ContainerService/fleets') && '--wait' || '' }} # don't wait for fleet hubs
152152 run : |
153153 helm upgrade ${{ env.WAIT_FLAG }} -i -f ${{ env.CHART_OVERRIDE_PATH }} --set ${{ env.CHART_OVERRIDES }} --set image.tag=${{ github.sha }} automated-deployment ${{ env.CHART_PATH }} --namespace ${{ env.NAMESPACE }}
154154` }}
You can’t perform that action at this time.
0 commit comments