Skip to content

Commit d9acadf

Browse files
fix: release pipeline to listen to "The next version is"
1 parent d2f4b2e commit d9acadf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
echo "$VERSION_OUTPUT"
117117
118118
# Extract version information
119-
if echo "$VERSION_OUTPUT" | grep -q "Bumping version"; then
119+
if echo "$VERSION_OUTPUT" | grep -q "The next version is"; then
120120
NEW_VERSION=$(poetry run python -c "import toml; print(toml.load('pyproject.toml')['tool']['poetry']['version'])")
121121
echo "new_release_published=true" >> $GITHUB_OUTPUT
122122
echo "new_release_version=$NEW_VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)