fix(ci): Fix another spot where ` needs escaping.
This commit is contained in:
parent
5b9b507de3
commit
b7b563a4c3
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -376,7 +376,7 @@ jobs:
|
|||
},
|
||||
{ onboard: [], interconnects: {} });
|
||||
|
||||
return JSON.stringify(grouped).replace(/\\/g,"\\\\");
|
||||
return JSON.stringify(grouped).replace(/\\/g,"\\\\").replace(/`/g,"\\`");
|
||||
result-encoding: string
|
||||
get-changed-files:
|
||||
if: ${{ github.event_name != 'schedule' }}
|
||||
|
|
Loading…
Add table
Reference in a new issue