From 5af59650427f3a8c8f8e030611dcbecfd9866ec2 Mon Sep 17 00:00:00 2001 From: Walter Huf Date: Tue, 13 Feb 2024 19:58:35 -0800 Subject: [PATCH] Use a full git identity to make latest_build tag --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de080f7..6380fd6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,7 +80,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Update the latest_build tag run: | - git config user.name 'Github Actions' + git config user.name 'github-actions[bot]' + git config user.email '41898282+github-actions[bot]@users.noreply.github.com' git tag -f -m "Latest Build" latest_build git push -f origin latest_build