Skip to content

Commit e79b956

Browse files
authored
Fix print_inputs in e2e-accuracy.yml (#4262)
1 parent 3f56b9d commit e79b956

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/e2e-accuracy.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,15 @@ jobs:
106106
steps:
107107
- name: Print inputs
108108
run: |
109-
echo "${{ toJSON(github.event.inputs) }}"
109+
cat <<EOF
110+
${{ toJSON(github.event.inputs) }}
111+
EOF
110112
111113
- name: Print setup outputs
112114
run: |
113-
echo "${{ toJSON(needs.setup.outputs) }}"
115+
cat <<EOF
116+
${{ toJSON(needs.setup.outputs) }}
117+
EOF
114118
115119
run_tests:
116120
name: Run test matrix

0 commit comments

Comments
 (0)