Skip to content

Commit acad028

Browse files
committed
fix: Correct binary version check in release workflow
The version check was comparing: Binary: 'bbl_parser 1.0.0 03b87d3 (2025-12-30)' Expected: '1.0.0 03b87d3 (2025-12-30)' Now correctly builds EXPECTED with 'bbl_parser' prefix to match actual output.
1 parent 03b87d3 commit acad028

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,13 @@ jobs:
116116

117117
- name: Verify version consistency
118118
env:
119-
EXPECTED: ${{ steps.extract.outputs.build_info }}
119+
BUILD_INFO: ${{ steps.extract.outputs.build_info }}
120120
run: |
121121
set -e
122122
123123
chmod +x ./binary-check/bbl_parser
124124
BINARY_VERSION=$(./binary-check/bbl_parser -V)
125+
EXPECTED="bbl_parser ${BUILD_INFO}"
125126
if [ "$BINARY_VERSION" = "$EXPECTED" ]; then
126127
echo "✅ Version match confirmed: binary='$BINARY_VERSION'"
127128
else

0 commit comments

Comments
 (0)