From b9c7015f9b79126889a00b7fe9c85ab92200ef89 Mon Sep 17 00:00:00 2001 From: Martin Kim <46072231+martinkim0@users.noreply.github.com> Date: Sun, 30 Jun 2024 12:54:30 -0700 Subject: [PATCH] ci: add git email for release (#2874) --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5373d2656f..6839e27139 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,8 @@ jobs: ref: ${{ inputs.branch }} - name: git tag run: | - git config user.name "scvi-tools release" + git config --global user.email "martin.kim@scverse.org" + git config --global user.name "scvi-tools release" git tag -m "${{ inputs.tag }}" "${{ inputs.tag }}" # If there is duplicate tag, this will fail. The publish to pypi action will have been a noop (due to skip # existing), so we make a non-destructive exit here