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
parent 0bf9782842
commit f643ac7c8e

View file

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