From 6af98af03f178a7745c16cc2b47557085d6f3f40 Mon Sep 17 00:00:00 2001 From: Gornak40 Date: Mon, 21 Oct 2024 01:49:34 +0300 Subject: [PATCH] ci: fix semver autotag --- .github/workflows/semver.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/semver.yml b/.github/workflows/semver.yml index cf75dc2..8c890aa 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -21,5 +21,5 @@ jobs: git config --global user.email "noreply@algolymp.ru" MESSAGE=$(git log -1 --pretty=%B) - git tag $VERSION -m $MESSAGE - git push origin $VERSION + git tag -a $VERSION -m $MESSAGE + git push origin --tags