forked from kofal.net/zmk
fix(ci): Fix another spot where ` needs escaping.
This commit is contained in:
committed by
Pete Johanson
parent
5b9b507de3
commit
b7b563a4c3
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' }}
|
||||
|
||||
Reference in New Issue
Block a user