Files
computer/.github/workflows/bump-version-computer-server.yml

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