From 2e7eb4eafb35a9fd9f9cac9fdcf13dd828219303 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Wed, 18 Nov 2020 00:32:52 +0300 Subject: [PATCH] ci(release): Don't use global git conf --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7460c4133e3..2a6aa788b54 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,8 +54,8 @@ jobs: - id: set-git-user name: Set git user to getsentry-bot run: | - git config --global user.name getsentry-bot - git config --global user.email bot@getsentry.com + git config user.name getsentry-bot + git config user.email bot@getsentry.com - uses: getsentry/craft@master name: Craft Prepare if: ${{ !github.event.inputs.skip_prepare }}