Skip to content

Commit 10ec95f

Browse files
committed
Fix Clean up Local Registry on manual event workflow
Fix helm test For Call workflow Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent 6b1ef36 commit 10ec95f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/_helm-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
9898
helm-test:
9999
needs: [get-test-case]
100-
if: ${{ fromJSON(needs.get-test-case.outputs.value_files).length != 0 }}
100+
if: ${{ needs.get-test-case.outputs.value_files != '[]' }}
101101
strategy:
102102
matrix:
103103
value_file: ${{ fromJSON(needs.get-test-case.outputs.value_files) }}

.github/workflows/manual-reset-local-registry.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
3434
clean-up:
3535
needs: get-build-matrix
36-
if: ${{ fromJSON(needs.get-build-matrix.outputs.nodes).length != 0 }}
36+
if: ${{ needs.get-image-list.outputs.matrix != '' }}
3737
strategy:
3838
matrix:
3939
node: ${{ fromJson(needs.get-build-matrix.outputs.nodes) }}
@@ -48,7 +48,7 @@ jobs:
4848
4949
build:
5050
needs: [get-build-matrix, clean-up]
51-
if: ${{ fromJSON(needs.get-build-matrix.outputs.nodes).length != 0 }}
51+
if: ${{ needs.get-image-list.outputs.matrix != '' }}
5252
strategy:
5353
matrix:
5454
example: ${{ fromJson(needs.get-build-matrix.outputs.examples) }}

0 commit comments

Comments
 (0)