feat: add bump version workflow for cua-mcp-server

This commit is contained in:
Claude
2025-10-25 01:52:52 +08:00
parent e2fce039c3
commit 80574337db

View File

@@ -0,0 +1,22 @@
name: Bump cua-mcp-server Version
on:
workflow_dispatch:
inputs:
bump_type:
description: 'Version bump type'
required: true
type: choice
options:
- patch
- minor
- major
jobs:
bump:
uses: ./.github/workflows/bump-version-reusable.yml
with:
package_name: 'cua-mcp-server'
package_directory: 'libs/python/mcp-server'
bump_type: ${{ inputs.bump_type }}
secrets: inherit