mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 19:45:12 +00:00
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:
parent
0bf9782842
commit
f643ac7c8e
1 changed files with 5 additions and 5 deletions
10
.github/workflows/js-benchmarks.yml
vendored
10
.github/workflows/js-benchmarks.yml
vendored
|
@ -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 \
|
||||
|
|
Loading…
Add table
Reference in a new issue