added echo statements to check_commit_message
All checks were successful
Autotagger / Autotagger (push) Successful in 6s
Build / Documentation (push) Successful in 12s
Build / Export Files (push) Successful in 4s

This commit is contained in:
SeaswimmerTheFsh 2024-03-11 21:49:22 -04:00
parent 54915726ca
commit bb18431d87
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -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