Skip to content

Commit 7b3a125

Browse files
chensuyueZePan110
andauthored
Fix cd workflow condition (#1588)
Fix cd workflow condition Signed-off-by: chensuyue <[email protected]> Co-authored-by: ZePan110 <[email protected]>
1 parent fba0de4 commit 7b3a125

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/manual-example-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
7777
build-deploy-gmc:
7878
needs: [get-test-matrix]
79-
if: ${{ fromJSON(inputs.deploy_gmc) }} && ${{ fromJSON(needs.get-test-matrix.outputs.nodes).length != 0 }}
79+
if: ${{ fromJSON(inputs.deploy_gmc) }}
8080
strategy:
8181
matrix:
8282
node: ${{ fromJson(needs.get-test-matrix.outputs.nodes) }}
@@ -90,7 +90,7 @@ jobs:
9090

9191
run-examples:
9292
needs: [get-test-matrix, build-deploy-gmc]
93-
if: always() && ${{ fromJSON(needs.get-test-matrix.outputs.examples).length != 0 }}
93+
if: always()
9494
strategy:
9595
matrix:
9696
example: ${{ fromJson(needs.get-test-matrix.outputs.examples) }}

0 commit comments

Comments
 (0)