Files
Kilo-Org_kilocode/script/release
T
kiloconnect[bot] 6e93f58a5f feat(vscode): add pre-release publishing support to marketplace workflow
Add a pre_release checkbox to the publish workflow that passes
--pre-release to vsce package, vsce publish, and ovsx publish.
This enables publishing to the VS Code Marketplace pre-release
channel without requiring a separate versioning scheme.

Closes #8156
2026-04-02 13:48:45 +00:00

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"