diff --git a/.github/workflows/bump-version-computer.yml b/.github/workflows/bump-version-computer.yml new file mode 100644 index 00000000..5f1f709b --- /dev/null +++ b/.github/workflows/bump-version-computer.yml @@ -0,0 +1,22 @@ +name: Bump cua-computer 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-computer' + package_directory: 'libs/python/computer' + bump_type: ${{ inputs.bump_type }} + secrets: inherit