Skip to content

Commit 1b5ee33

Browse files
committed
ci: correct for array rendering
1 parent 79fda9e commit 1b5ee33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/wc-build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runner-labels: ${{ inputs.runner-labels }}
5858

5959
build-push:
60-
name: Build (${{ (startsWith(toJson(matrix.runner), '[') && endsWith(toJson(matrix.runner), ']')) && join(fromJson(matrix.runner), ', ') || matrix.runner }})
60+
name: Build (${{ (startsWith(matrix.runner, '[') && endsWith(matrix.runner, ']')) && join(matrix.runner, ', ') || matrix.runner }})
6161
strategy:
6262
matrix:
6363
runner: ${{ fromJson(inputs.build-test-runner-labels) }}

.github/workflows/wc-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ permissions: {}
3232

3333
jobs:
3434
run-test:
35-
name: Integration Test (${{ (startsWith(toJson(matrix.runner), '[') && endsWith(toJson(matrix.runner), ']')) && join(fromJson(matrix.runner), ', ') || matrix.runner }})
35+
name: Integration Test (${{ (startsWith(matrix.runner, '[') && endsWith(matrix.runner, ']')) && join(matrix.runner, ', ') || matrix.runner }})
3636
strategy:
3737
matrix:
3838
runner: ${{ fromJson(inputs.build-test-runner-labels) }}

0 commit comments

Comments
 (0)