Skip to content

Commit b5048db

Browse files
committed
chore: update consistency check
1 parent 368d5d8 commit b5048db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/consistency.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
- name: Check TRUNC_VERSION
3838
run: |
3939
expected="${VERSION%.*}" # bash: strip last “.patch”
40-
if [ "${{ steps.extract.outputs.TRUNC_VERSION }}" != "$expected" ]; then
41-
echo "::error::TRUNC_VERSION mismatch: got '${{ steps.extract.outputs.TRUNC_VERSION }}' but expected '$expected'"
40+
if [ "$TRUNC_VERSION" != "$expected" ]; then
41+
echo "::error::TRUNC_VERSION mismatch: got '$TRUNC_VERSION' but expected '$expected'"
4242
exit 1
4343
fi
4444

0 commit comments

Comments
 (0)