Skip to content

Commit 383a05b

Browse files
authored
Merge pull request #37 from contentpass/CP-2520-add-setting-git-config
Add setting git config in release
2 parents a090992 + 54677a9 commit 383a05b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ jobs:
1616
env:
1717
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
1818

19+
- name: Initialize Git user
20+
run: |
21+
git config --global user.email "[email protected]"
22+
git config --global user.name "Release Workflow"
23+
24+
- name: Log git status
25+
run: git status
26+
1927
- name: Run release
2028
run: npm run release --ci
2129
env:

0 commit comments

Comments
 (0)