Commit 91f53ca
committed
fix(ci): preserve backticks in release body via --notes-file
The previous workflow captured the awk output into a shell variable,
then echoed it into GITHUB_OUTPUT. Bash treats backticks as command
substitution, so every inline `code` span in the changelog body
was silently stripped — every release shipped with mangled notes
(missing identifiers + literals).
Switched to writing awk output directly to /tmp/release_notes.md
and passing it to gh via --notes-file, which is byte-preserving.
Same fix that landed in polymarket-cpp 7eacef1.1 parent aad8888 commit 91f53ca
1 file changed
Lines changed: 11 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
27 | 26 | | |
28 | 27 | | |
29 | 28 | | |
30 | | - | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
31 | 35 | | |
32 | 36 | | |
33 | 37 | | |
34 | | - | |
35 | | - | |
36 | | - | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
37 | 42 | | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
0 commit comments