From c92456f4a7ca8bdf62c29a2a30caa855a2023331 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Wed, 4 Dec 2024 19:12:58 -0500 Subject: [PATCH] fix: Configure Git user name and email in release workflow --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0b0c40a..aed35832 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Setup Git Config + run: | + git config user.name "Prad N." + git config user.email "prad@sonr.io" + - uses: oven-sh/setup-bun@v2 with: bun-version: latest