added echo statements to check_commit_message
This commit is contained in:
parent
54915726ca
commit
bb18431d87
1 changed files with 2 additions and 0 deletions
|
@ -32,8 +32,10 @@ jobs:
|
||||||
echo "Called without commit message!"
|
echo "Called without commit message!"
|
||||||
exit 1
|
exit 1
|
||||||
elif [ "$OUTPUT" = "None" ]; then
|
elif [ "$OUTPUT" = "None" ]; then
|
||||||
|
echo "No version bump."
|
||||||
echo "::set-output name=latest_tag::$(git describe --tags --abbrev=0)"
|
echo "::set-output name=latest_tag::$(git describe --tags --abbrev=0)"
|
||||||
else
|
else
|
||||||
|
echo "Version bump detected: $OUTPUT"
|
||||||
echo "::set-output name=version::$OUTPUT"
|
echo "::set-output name=version::$OUTPUT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Reference in a new issue