6e93f58a5f
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
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"
|