feat: add bump version workflow for pylume

This commit is contained in:
Claude
2025-10-25 01:52:35 +08:00
parent f35e2697d0
commit d031fb1819

View File

@@ -0,0 +1,22 @@
name: Bump pylume 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: 'pylume'
package_directory: 'libs/python/pylume'
bump_type: ${{ inputs.bump_type }}
secrets: inherit