This is an automated email from the ASF dual-hosted git repository.

epugh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-mcp.git


The following commit(s) were added to refs/heads/main by this push:
     new c6dff38  fix: remove SNAPSHOT suffix from GA release in MCP Registry 
(#37)
c6dff38 is described below

commit c6dff38c90adefce4b41125795fae6776534ee00
Author: Aditya Parikh <[email protected]>
AuthorDate: Wed Jan 7 12:26:08 2026 -0400

    fix: remove SNAPSHOT suffix from GA release in MCP Registry (#37)
---
 .github/workflows/release-publish.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/release-publish.yml 
b/.github/workflows/release-publish.yml
index 397d4a8..61b51e0 100644
--- a/.github/workflows/release-publish.yml
+++ b/.github/workflows/release-publish.yml
@@ -376,8 +376,8 @@ jobs:
                 VERSION="${{ steps.mcp_version.outputs.version }}"
                 # Update the top-level server version (e.g., 1.2.3)
                 jq --arg v "$VERSION" '.version = $v' server.json > 
server.json.tmp
-                # Update package version (uses -SNAPSHOT suffix for image/JAR 
alignment if applicable)
-                jq --arg v "$VERSION-SNAPSHOT" '.packages[0].version = $v' 
server.json.tmp > server.json
+                # Update package version to match GA release (no -SNAPSHOT 
suffix)
+                jq --arg v "$VERSION" '.packages[0].version = $v' 
server.json.tmp > server.json
                 rm server.json.tmp
                 # Show the final server.json for auditing
                 cat server.json

Reply via email to