Skip to content

Commit 6fa882e

Browse files
fix(ci): bump MCP version to 0.1.1 and fix release notes HEREDOC
- mcp/package.json was still at 0.1.0, causing E403 on npm publish - release.yml HEREDOC syntax broke with GitHub expressions, use printf instead Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8736bd2 commit 6fa882e

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,12 @@ jobs:
141141
echo "$changelog" >> "$GITHUB_OUTPUT"
142142
echo "$EOF" >> "$GITHUB_OUTPUT"
143143
144-
- name: Write release notes to file
145-
run: cat <<'NOTES_EOF' > /tmp/release-notes.md
146-
${{ steps.changelog.outputs.body }}
147-
NOTES_EOF
148-
149144
- name: Create GitHub Release
150145
env:
151146
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
147+
RELEASE_BODY: ${{ steps.changelog.outputs.body }}
152148
run: |
149+
printf '%s\n' "$RELEASE_BODY" > /tmp/release-notes.md
153150
gh release create "${{ steps.version.outputs.version }}" \
154151
--title "${{ steps.version.outputs.version }}" \
155152
--notes-file /tmp/release-notes.md \

mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metrillm-mcp",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "MCP server for MetriLLM — benchmark local LLMs from any AI coding assistant",
55
"type": "module",
66
"bin": {

0 commit comments

Comments
 (0)