mirror of https://github.com/zmkfirmware/zmk.git
fix(ci): Fix another spot where ` needs escaping.
This commit is contained in:
parent
5b9b507de3
commit
b7b563a4c3
|
|
@ -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…
Reference in New Issue