Skip to content

Commit a1fde7d

Browse files
committed
Configure Git settings for GitHub Actions
1 parent f845f8b commit a1fde7d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
registry-url: "https://registry.npmjs.org"
2020
- run: npm install
2121
- run: npm run build
22+
- name: Configure Git
23+
run: |
24+
git config --global user.name "GitHub Actions"
25+
git config --global user.email "[email protected]"
2226
- run: npm version patch -m "Bump version to %s [skip ci]"
2327
- run: npm publish --access public
2428
env:

0 commit comments

Comments
 (0)