From 7b5c8a8d3c453a916f55fe0146fe182de3d1c166 Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Sun, 26 Oct 2025 18:06:45 -0700 Subject: [PATCH] Remove workflow_dispatch trigger from MCP server release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Simplify workflow to only trigger on mcp-v*.*.* tags. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/release-mcp-server.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/release-mcp-server.yml b/.github/workflows/release-mcp-server.yml index cbb7a5f5..6584fd39 100644 --- a/.github/workflows/release-mcp-server.yml +++ b/.github/workflows/release-mcp-server.yml @@ -3,13 +3,6 @@ name: Release MCP Server on: push: tags: ["mcp-v*.*.*"] - workflow_dispatch: - inputs: - push_image: - description: "Push image to registry (unchecked for testing)" - required: false - default: false - type: boolean env: REGISTRY: docker.io @@ -46,7 +39,6 @@ jobs: echo "version=$PROJECT_VERSION" >> $GITHUB_OUTPUT - name: Log in to Docker Hub - if: github.event_name != 'workflow_dispatch' || inputs.push_image uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} @@ -71,6 +63,6 @@ jobs: project: v9jv1mlpwc context: ./mcp_server platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'workflow_dispatch' || inputs.push_image }} + push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}