conductor-checkpoint-msg_01BFgirbgmehsEGCMWjgSsnv
This commit is contained in:
parent
999177a0c4
commit
6503e60122
1 changed files with 13 additions and 1 deletions
14
.github/workflows/release-mcp-server.yml
vendored
14
.github/workflows/release-mcp-server.yml
vendored
|
|
@ -3,6 +3,12 @@ name: Release MCP Server
|
|||
on:
|
||||
push:
|
||||
tags: ["mcp-v*.*.*"]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
tag:
|
||||
description: 'Tag to release (e.g., mcp-v1.0.0)'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
env:
|
||||
REGISTRY: docker.io
|
||||
|
|
@ -43,7 +49,13 @@ jobs:
|
|||
- name: Extract and validate version
|
||||
id: version
|
||||
run: |
|
||||
TAG_VERSION=${GITHUB_REF#refs/tags/mcp-v}
|
||||
# Get tag from either push event or manual workflow_dispatch input
|
||||
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
|
||||
TAG_FULL="${{ inputs.tag }}"
|
||||
TAG_VERSION=${TAG_FULL#mcp-v}
|
||||
else
|
||||
TAG_VERSION=${GITHUB_REF#refs/tags/mcp-v}
|
||||
fi
|
||||
|
||||
if ! [[ $TAG_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
||||
echo "Tag must follow semantic versioning: mcp-vX.Y.Z"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue