From 010f1af16c615a11c191bec0de2bdb5879a8db86 Mon Sep 17 00:00:00 2001 From: go0p Date: Tue, 18 Aug 2026 14:54:59 +0800 Subject: [PATCH] fix(ci): jq does not allow \` escapes inside strings; quote the program instead --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a75e5d..59e9315 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -134,7 +134,7 @@ jobs: echo echo "| Variant | Size | SHA-256 |" echo "| --- | --- | --- |" - jq -r '.artifacts[] | "| \(.variant) | \(.size) | \`\(.sha256)\` |"' dist/release-entry.json + jq -r '.artifacts[] | "| \(.variant) | \(.size) | `\(.sha256)` |"' dist/release-entry.json } >> "$GITHUB_STEP_SUMMARY" verify: