mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-28 19:11:03 +08:00
7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BUMP_TYPE=${1:-patch}
|
|
PRE_RELEASE=${2:-false}
|
|
|
|
gh workflow run publish.yml -f bump="$BUMP_TYPE" -f pre_release="$PRE_RELEASE"
|