From 6e874f97d806e82b6a8a48729c688d93c9c93ba0 Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Tue, 21 Mar 2023 14:10:53 +0100 Subject: [PATCH] fix(release): add git user --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5e1cc06..4a4a8d8f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,10 @@ jobs: - name: Install Go 🗳 uses: ./.github/workflows/composite/bootstrap-go - name: Tag HEAD 😸 - run: git tag ${{ needs.changelog.outputs.tag }} + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + git tag ${{ needs.changelog.outputs.tag }} - name: Install cosign 🔑 uses: sigstore/cosign-installer@c3667d99424e7e6047999fb6246c0da843953c65 with: