Skip to content

Commit 433cddf

Browse files
Fix git action issue
1 parent 5f96717 commit 433cddf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/npm-publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
- name: Bump version
3333
id: version
3434
run: |
35+
# Author identity
36+
git config user.name "github-actions[bot]"
37+
git config user.email "github-actions[bot]@users.noreply.github.com"
38+
3539
# Bump patch version (you can change to minor/major if needed)
3640
NEW_VERSION=$(npm version patch -m "chore(release): v%s [skip ci]")
3741
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)