From 9e1fd69f1ad086ba6918b390bbf0448946fcae54 Mon Sep 17 00:00:00 2001 From: Alexander Gornak Date: Mon, 21 Oct 2024 02:01:14 +0300 Subject: [PATCH] ci: finally fix semver (#15) --- .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 6d59f15..8db2f26 100644 --- a/.github/workflows/semver.yml +++ b/.github/workflows/semver.yml @@ -17,10 +17,10 @@ jobs: VERSION=$(./scripts/semver.sh) echo "Project version: $VERSION" - git config --global user.name "Gornak40\[bot\]" + git config --global user.name "Gornak40[bot]" git config --global user.email "noreply@algolymp.ru" - MESSAGE=$(git log -1 --pretty=%B) + MESSAGE=$(git log -1 --pretty=%s) echo "Tag message: $MESSAGE" git tag -a $VERSION -m $MESSAGE git push origin --tags