Skip to content

Commit 8c7c395

Browse files
authored
fix: configure git user in release workflow (#37)
1 parent 20263d9 commit 8c7c395

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-release.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,10 @@ jobs:
2525
- name: Install dependencies
2626
run: npm install
2727

28+
- name: Set git user
29+
run: |
30+
git config --global user.email "<$GITHUB_ACTOR@users.noreply.github.com>"
31+
git config --global user.name "$GITHUB_ACTOR"
32+
2833
- name: Publish package
2934
run: npm run release

0 commit comments

Comments
 (0)