File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 6
6
forceDeploy :
7
7
description : " Redeploy GCP functions even if they haven't changed"
8
8
required : false
9
- default : false
10
9
type : boolean
11
10
push :
12
11
branches :
33
32
34
33
deploy-convert-ids :
35
34
needs : path-changes
36
- if : ${{ needs.path-changes.outputs.convert_ids == 'true' || inputs.forceDeploy == 'true' }}
35
+ if : ${{ always() && ( needs.path-changes.outputs.convert_ids == 'true' || inputs.forceDeploy == 'true') }}
37
36
uses : ./.github/workflows/deploy-func.yaml
38
37
with :
39
38
func-name : " gpz-convert-ids"
45
44
46
45
deploy-ml :
47
46
needs : path-changes
48
- if : ${{ needs.path-changes.outputs.ml == 'true' || inputs.forceDeploy == 'true' }}
47
+ if : ${{ always() && ( needs.path-changes.outputs.ml == 'true' || inputs.forceDeploy == 'true') }}
49
48
uses : ./.github/workflows/deploy-func.yaml
50
49
with :
51
50
func-name : " gpz-ml"
You can’t perform that action at this time.
0 commit comments