fixed some broken stuff in the autotagger
All checks were successful
Autotagger / Autotagger (push) Successful in 4s
Build / Documentation (push) Successful in 12s
Build / Export Files (push) Successful in 4s

This commit is contained in:
SeaswimmerTheFsh 2024-03-11 21:04:38 -04:00
parent 24d7cdd2bc
commit 8dd784eb26
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -27,7 +27,7 @@ jobs:
id: check_commit_message
run: |
COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}")
PATTERN="^(?:V|v)ersion\ bump(?:ed)?\ to\ ([0-9]+\.[0-9]+\.[0-9]+.*)"
PATTERN="^(?:V|v)ersion\ bump(?:ed)?\ to\ ([0-9]+\.[0-9]+\.[0-9]+(?:-[a-zA-Z0-9]+)?)$"
if [ "$COMMIT_MESSAGE" =~ $PATTERN ]; then
echo "Found version bump in commit message."
echo "::set-output name=version::${BASH_REMATCH[1]}"