Skip to content

Commit 0836d70

Browse files
committed
fix: remove escaped backticks in vscode release notes heredoc
Single-quoted heredoc (<<'NOTES') doesn't process escape sequences, so \` was rendering literally in GitHub release notes.
1 parent e8e10aa commit 0836d70

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,10 @@ jobs:
434434
--notes "$(cat <<'NOTES'
435435
## B2C DX VS Code Extension v${{ steps.packages.outputs.version_vsx }}
436436
437-
Download the \`.vsix\` file below and install via:
438-
\`\`\`
437+
Download the `.vsix` file below and install via:
438+
```
439439
code --install-extension b2c-vs-extension-${{ steps.packages.outputs.version_vsx }}.vsix
440-
\`\`\`
440+
```
441441
442442
Or in VS Code: Extensions → ⋯ → Install from VSIX...
443443
NOTES

0 commit comments

Comments
 (0)