We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4908ef commit 7443796Copy full SHA for 7443796
.github/workflows/clabe.yml
@@ -13,6 +13,7 @@ on:
13
- patch
14
- minor
15
- major
16
+ - stable
17
pull_request:
18
push:
19
branches:
@@ -166,14 +167,16 @@ jobs:
166
167
bump_type="${{ github.event.inputs.bump_type || 'rc' }}"
168
echo "Bumping version with type: $bump_type"
169
- # Handle rc bumping logic (same as in github-rc-release)
170
+ # Handle version bumping based on type
171
if [[ "$bump_type" == "rc" ]]; then
172
+ # Handle rc bumping logic (same as in github-rc-release)
173
if uv version --bump rc --dry-run; then
174
uv version --bump rc
175
else
176
uv version --bump rc --bump patch
177
fi
178
179
+ # Handle patch, minor, major, stable
180
uv version --bump $bump_type
181
182
0 commit comments