Skip to content

Commit

Permalink
fix(ci): Fix another spot where ` needs escaping.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Jan 5, 2023
1 parent 5b9b507 commit b7b563a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down

0 comments on commit b7b563a

Please sign in to comment.