We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2aeab19 + 68f8e0b commit 57bbdfaCopy full SHA for 57bbdfa
.github/workflows/tests_hw_wokwi.yml
@@ -333,9 +333,9 @@ jobs:
333
334
echo "Proceeding with GitLab pipeline trigger..."
335
336
- # Replace double quotes with single quotes for the GitLab pipeline trigger
337
- test_types=$(printf '%s' "${{ needs.get-artifacts.outputs.hw_types }}" | sed "s/\"/'/g")
338
- test_chips=$(printf '%s' "${{ needs.get-artifacts.outputs.hw_targets }}" | sed "s/\"/'/g")
+ # Escape double quotes so JSON arrays survive the GitLab API payload
+ test_types=$(printf '%s' "${{ needs.get-artifacts.outputs.hw_types }}" | sed 's/"/\\"/g')
+ test_chips=$(printf '%s' "${{ needs.get-artifacts.outputs.hw_targets }}" | sed 's/"/\\"/g')
339
echo "test_types=$test_types"
340
echo "test_chips=$test_chips"
341
0 commit comments