mirror of
https://github.com/trycua/computer.git
synced 2026-01-01 11:00:31 -06:00
feat: add bump version workflow for cua-computer
This commit is contained in:
22
.github/workflows/bump-version-computer.yml
vendored
Normal file
22
.github/workflows/bump-version-computer.yml
vendored
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user