Skip to content

Commit 619fcc1

Browse files
author
strausr
committed
fix: configure git user before creating initial tag
1 parent cce1e98 commit 619fcc1

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ jobs:
6666

6767
- run: npm test --if-present
6868

69+
- name: Configure git
70+
run: |
71+
git config user.name "github-actions[bot]"
72+
git config user.email "github-actions[bot]@users.noreply.github.com"
73+
6974
- name: Create initial tag if needed
7075
run: |
7176
if ! git rev-parse --verify "v1.0.0-beta.1" >/dev/null 2>&1; then

0 commit comments

Comments
 (0)