Skip to content

Commit 0e256fd

Browse files
committed
refactor: fix configure git user
1 parent d6cc4e0 commit 0e256fd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cli-publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,11 @@ jobs:
218218
uses: actions/download-artifact@v4
219219
with:
220220
name: cli-packaged
221-
path: cli/dist
221+
path: cli/dist
222+
- name: Configure Git
223+
run: |
224+
git config user.name "github-actions[bot]"
225+
git config user.email "github-actions[bot]@users.noreply.github.com"
222226
- name: Create and Push Git Tag
223227
run: |
224228
version=${{ needs.check-version.outputs.version }}

0 commit comments

Comments
 (0)