Skip to content

Commit 08df7be

Browse files
authored
fix(ci): correct markdown code fence formatting in PR comments (#185)
The install and cleanup commands code blocks were missing proper line breaks before the closing fence, which could cause rendering issues in PR comments.
1 parent cbf05ce commit 08df7be

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,15 +289,17 @@ jobs:
289289
290290
Install any of the published packages using the dist-tag:
291291
\`\`\`bash
292-
${INSTALL_COMMANDS}\`\`\`
292+
${INSTALL_COMMANDS}
293+
\`\`\`
293294
294295
### Manual Cleanup
295296
296297
When you're done testing, you should manually remove the dist-tag to keep the registry clean:
297298
298299
\`\`\`bash
299300
# Remove dist-tags (requires npm authentication):
300-
${CLEANUP_COMMANDS}\`\`\`
301+
${CLEANUP_COMMANDS}
302+
\`\`\`
301303
302304
> **Note**: Cleanup is optional. Published versions remain available via exact version install (e.g., \`npm install @ya-modbus/cli@0.6.1-pr123.0+abc1234\`) even after the dist-tag is removed.
303305

0 commit comments

Comments
 (0)