From b6fddb72b27cf717b453bc0385019c2eed2513ab Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 25 Mar 2024 21:40:41 -0400 Subject: [PATCH] don't pass -a into the autotagger tag commands, -s implies this already --- .gitea/workflows/autotagger.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/autotagger.yaml b/.gitea/workflows/autotagger.yaml index e0b2d3d..dfc38e8 100644 --- a/.gitea/workflows/autotagger.yaml +++ b/.gitea/workflows/autotagger.yaml @@ -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