From 3de6791e2f664372673f66bb90a3c73ea91d0e1d Mon Sep 17 00:00:00 2001 From: Alex Cohen Date: Tue, 25 Mar 2025 11:42:53 -0400 Subject: [PATCH] Fix workflow (AST-0000) --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25192f9..632a748 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,6 +46,8 @@ jobs: - name: Create a new tag run: | + git config --global user.name "github-actions" + git config --global user.email "github-actions@github.com" new_tag=${{ steps.bump.outputs.new_version }} git tag $new_tag -m "${{ env.formatted_title }}" git push origin $new_tag