don't pass -a into the autotagger tag commands, -s implies this already
All checks were successful
Autotagger / Autotagger (push) Successful in 11s
Build / Export Files (push) Successful in 9s
Build / Documentation (push) Successful in 26s

This commit is contained in:
SeaswimmerTheFsh 2024-03-25 21:40:41 -04:00
parent 9508835d00
commit b6fddb72b2
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -49,7 +49,7 @@ jobs:
if: steps.check_commit_message.outputs.version
run: |
VERSION=${{ steps.check_commit_message.outputs.version }}
git tag -sa $VERSION -m "version bumped to $VERSION"
git tag -s $VERSION -m "version bumped to $VERSION"
git push origin $VERSION
- name: Update latest tag
@ -57,5 +57,5 @@ jobs:
run: |
COMMIT_MESSAGE=$(echo "${{ steps.extract_commit_message.outputs.message }}")
LATEST_TAG=${{ steps.check_commit_message.outputs.latest_tag }}
git tag -fsa $LATEST_TAG -m "$COMMIT_MESSAGE"
git tag -fs $LATEST_TAG -m "$COMMIT_MESSAGE"
git push origin $LATEST_TAG --force