mirror of
https://github.com/trycua/computer.git
synced 2026-01-03 20:10:04 -06:00
23 lines
490 B
YAML
23 lines
490 B
YAML
name: Bump cua-computer-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-computer-server'
|
|
package_directory: 'libs/python/computer-server'
|
|
bump_type: ${{ inputs.bump_type }}
|
|
secrets: inherit
|