fix(workflows): configure Git user in major tag creation
All checks were successful
Auto Changelog & Release / release (push) Successful in 6s

- Adds Git user configuration to ensure correct author information
  during major tag creation workflow.
- Helps avoid potential issues with missing author details.
This commit is contained in:
2025-06-14 19:12:07 +02:00
parent b20b8688c1
commit 79921dd636

View File

@@ -41,6 +41,9 @@ jobs:
run: |
set -euo pipefail
git config user.name "$CI_COMMIT_AUTHOR_NAME"
git config user.email "$CI_COMMIT_AUTHOR_EMAIL"
# Bestimmten Commit des Release-Tags ermitteln
COMMIT_SHA="$(git rev-list -n 1 "$RELEASE_TAG")"