From 4f9d949aecc2bf958c6984d55e5917aa5ef7a6e4 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 5 Mar 2023 11:50:22 -0800 Subject: [PATCH] ci: set git committer for release tag --- .github/workflows/release-tip.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-tip.yml b/.github/workflows/release-tip.yml index c85a031a9..044a3c698 100644 --- a/.github/workflows/release-tip.yml +++ b/.github/workflows/release-tip.yml @@ -16,6 +16,8 @@ jobs: - uses: actions/checkout@v3 - name: Tip Tag run: | + git config user.name "GitHub Actions Bot" + git config user.email "<>" git tag -fa tip -m "Latest Continuous Release" ${GITHUB_SHA} git push --force origin tip