From fe4806ce4966374d9da7e4ab4b05b6d49318daa8 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Thu, 17 Apr 2025 23:29:04 +0200 Subject: [PATCH] [ci] Revert: Workflows: Use real username to commit changes and fix assets Signed-off-by: Andrei Kvapil --- .github/workflows/tags.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tags.yaml b/.github/workflows/tags.yaml index 44bc8479..e951186c 100644 --- a/.github/workflows/tags.yaml +++ b/.github/workflows/tags.yaml @@ -95,8 +95,8 @@ jobs: GIT_AUTHOR_NAME: ${{ github.actor }} GIT_AUTHOR_EMAIL: ${{ github.actor }}@users.noreply.github.com run: | - git config user.name "$GIT_AUTHOR_NAME" - git config user.email "$GIT_AUTHOR_EMAIL" + git config user.name "github-actions" + git config user.email "github-actions@github.com" git add . git commit -m "Prepare release ${GITHUB_REF#refs/tags/}" -s || echo "No changes to commit"