Skip to content

Commit 7443796

Browse files
committed
Expose "stable" bump to manual releases
What a mess....
1 parent d4908ef commit 7443796

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/clabe.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- patch
1414
- minor
1515
- major
16+
- stable
1617
pull_request:
1718
push:
1819
branches:
@@ -166,14 +167,16 @@ jobs:
166167
bump_type="${{ github.event.inputs.bump_type || 'rc' }}"
167168
echo "Bumping version with type: $bump_type"
168169
169-
# Handle rc bumping logic (same as in github-rc-release)
170+
# Handle version bumping based on type
170171
if [[ "$bump_type" == "rc" ]]; then
172+
# Handle rc bumping logic (same as in github-rc-release)
171173
if uv version --bump rc --dry-run; then
172174
uv version --bump rc
173175
else
174176
uv version --bump rc --bump patch
175177
fi
176178
else
179+
# Handle patch, minor, major, stable
177180
uv version --bump $bump_type
178181
fi
179182

0 commit comments

Comments
 (0)