From 2a1acf79ffac82cf20843611e94705660abfc246 Mon Sep 17 00:00:00 2001 From: "jiyeong.seok" Date: Tue, 8 Oct 2024 15:08:59 +0900 Subject: [PATCH] Fix the github action issue Signed-off-by: jiyeong.seok --- .github/workflows/publish-release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index d7ebb83..c5ac2c9 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -31,7 +31,8 @@ jobs: echo Last version: ${last_version} new_version=$(echo ${NEW_TAG//v/""}) echo New version: ${new_version} - git config --local user.name "github-actions[bot]" + git config --global user.name "github-actions[bot]" + git config --global user.email "fosslight-dev@lge.com" bumpversion --current-version $last_version --new-version $new_version setup.py - name: update changelog with gren env: @@ -41,7 +42,8 @@ jobs: node_modules/.bin/gren changelog --override - name: Commit files run: | - git config --local user.name "github-actions[bot]" + git config --global user.name "github-actions[bot]" + git config --global user.email "fosslight-dev@lge.com" git add CHANGELOG.md git commit -m "Update ChangeLog" - name: Push changes