We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 368d5d8 commit b5048dbCopy full SHA for b5048db
.github/workflows/consistency.yml
@@ -37,8 +37,8 @@ jobs:
37
- name: Check TRUNC_VERSION
38
run: |
39
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'"
+ if [ "$TRUNC_VERSION" != "$expected" ]; then
+ echo "::error::TRUNC_VERSION mismatch: got '$TRUNC_VERSION' but expected '$expected'"
42
exit 1
43
fi
44
0 commit comments