From 93203f74e2f8e8fe0afe6c1c7c89168c59f8c8e3 Mon Sep 17 00:00:00 2001 From: Konstantin Kostov Date: Mon, 12 Feb 2024 14:13:53 +0100 Subject: [PATCH] fix: tags must be annotated --- .github/workflows/set-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/set-version.yml b/.github/workflows/set-version.yml index 7283c0c..e904ef8 100644 --- a/.github/workflows/set-version.yml +++ b/.github/workflows/set-version.yml @@ -28,5 +28,5 @@ jobs: git config --global user.name 'Daniel Jilg' git config --global user.email 'winsmith@users.noreply.github.com' git commit -am "Update version to ${{ inputs.version }}" - git tag ${{ inputs.version }} + git tag -a ${{ inputs.version }} -m "${{ inputs.version }}" git push --follow-tags