Skip to content

Commit 582ca56

Browse files
committed
chore: configure git identity for release workflow
1 parent a2ca175 commit 582ca56

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434
- name: Setup .npmrc (NPM)
3535
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPMJS_TOKEN }}" >> ~/.npmrc
3636

37+
- name: Setup Git
38+
run: |
39+
git config --global user.name "github-actions[bot]"
40+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
41+
git status
42+
3743
- name: Release
3844
run: yarn release
3945
env:

0 commit comments

Comments
 (0)