Skip to content

Commit 004229b

Browse files
fix(ci): preserve STT e2e provider JSON (#5287)
Forward detected provider output with printf so workflow matrices receive valid JSON.
1 parent 4f39f81 commit 004229b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/stt_e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
8888
echo 'providers=["${{ inputs.provider }}"]' >> $GITHUB_OUTPUT
8989
else
90-
echo "providers=${{ needs.detect-changes.outputs.providers }}" >> $GITHUB_OUTPUT
90+
printf 'providers=%s\n' '${{ needs.detect-changes.outputs.providers }}' >> "$GITHUB_OUTPUT"
9191
fi
9292
9393
direct-provider-batch-e2e:

0 commit comments

Comments
 (0)