Skip to content

Commit 0642d3d

Browse files
author
mcp-release-bot
committed
fix(release): fix workflow parsing errors - use hardcoded lowercase repo name and add missing step ID
1 parent d0de459 commit 0642d3d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
PYTHON_VERSION: "3.13"
1010
REGISTRY: ghcr.io
11-
IMAGE_NAME: ${{ toLower(github.repository) }}
11+
IMAGE_NAME: othervibes/mcp-as-a-judge
1212

1313
jobs:
1414
build_dist:
@@ -146,6 +146,7 @@ jobs:
146146
run: |
147147
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
148148
- name: Generate server.json
149+
id: server
149150
env:
150151
VERSION: ${{ steps.ver.outputs.VERSION }}
151152
run: |
@@ -169,6 +170,8 @@ jobs:
169170
}
170171
with open('server.json', 'w') as f:
171172
json.dump(server, f, indent=2)
173+
with open(os.environ['GITHUB_OUTPUT'], 'a') as f:
174+
f.write(f"json={json.dumps(server)}\n")
172175
PY
173176
- name: Login to MCP Registry (GitHub OIDC)
174177
run: |

0 commit comments

Comments
 (0)