From c8d3a10418ceffc609282d5c918a8f7654dd2c03 Mon Sep 17 00:00:00 2001 From: Amil Muhammed Hamza <32008354+amilmohd155@users.noreply.github.com> Date: Fri, 2 Jan 2026 01:00:00 +0000 Subject: [PATCH 1/2] fix: add Git user initialization step in release workflow --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 86c85ea..c5af6e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,10 +19,15 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile + - name: Initialize Git User + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + - name: Build package run: yarn prepare - name: Create Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx release-it --ci + run: npx release-it --ci --dry-run From 172710d63b976f0ec66db87149beb2d9d1474947 Mon Sep 17 00:00:00 2001 From: Amil Muhammed Hamza <32008354+amilmohd155@users.noreply.github.com> Date: Fri, 2 Jan 2026 01:04:52 +0000 Subject: [PATCH 2/2] fix: remove dry-run option from release command in workflow --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5af6e9..30b820f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,4 +30,4 @@ jobs: - name: Create Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx release-it --ci --dry-run + run: npx release-it --ci