aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorPeter Johanson <[email protected]>2023-01-05 16:45:00 +0000
committerPete Johanson <[email protected]>2023-01-05 12:47:11 -0600
commitb7b563a4c3c19ddba7b5b300a08c690f149e7d32 (patch)
treeb996d48cca831ae0ca422f5077c31e97a867b7e4 /.github
parent5b9b507de3ef6e7a3bcb1ef61fe6d12ba46b8447 (diff)
downloadzmk-b7b563a4c3c19ddba7b5b300a08c690f149e7d32.tar.gz
zmk-b7b563a4c3c19ddba7b5b300a08c690f149e7d32.zip
fix(ci): Fix another spot where ` needs escaping.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c266cf6066..6305b7412c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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' }}