CI: Remove EOL escapes from single quoted string in js-benchmarks

Don't need these, they mess up the JSON payload.
This commit is contained in:
Jelle Raaijmakers 2025-04-15 10:53:39 +02:00
commit f643ac7c8e

View file

@ -78,11 +78,11 @@ jobs:
- name: 'Call webhook' - name: 'Call webhook'
shell: bash shell: bash
run: | run: |
echo -n '{ \ echo '{
"commit": "${{ github.sha }}", \ "commit": "${{ github.sha }}",
"os": "${{ matrix.os_name }}", \ "os": "${{ matrix.os_name }}",
"arch": "${{ matrix.arch }}", \ "arch": "${{ matrix.arch }}",
"artifact": "js-benchmarks-results-${{ matrix.os_name }}-${{ matrix.arch }}" \ "artifact": "js-benchmarks-results-${{ matrix.os_name }}-${{ matrix.arch }}"
}' > request.json }' > request.json
curl \ curl \
--fail \ --fail \