mirror of
https://github.com/trycua/computer.git
synced 2026-01-05 12:59:58 -06:00
Applied prettier formatting to workflow files and documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
460 B
YAML
23 lines
460 B
YAML
name: Bump cua-agent 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-agent"
|
|
package_directory: "libs/python/agent"
|
|
bump_type: ${{ inputs.bump_type }}
|
|
secrets: inherit
|