Skip to content

Commit 33d1b59

Browse files
authored
ci(publish): fix git configs & capitalise Release
1 parent 42881f6 commit 33d1b59

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,16 @@ jobs:
2020

2121
- name: Install dependencies
2222
run: npm ci
23+
24+
- run: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
25+
- run: git config --global user.name "github-actions"
2326

2427
- name: Run final tests
2528
# npm run test is excluded here intentionally
2629
run: npm run lint && npm run prettier
2730

2831
- name: Version package
29-
run: 'npm version ${{ github.event.release.tag_name }} -m "chore(release): bump version %s"'
32+
run: 'npm version ${{ github.event.release.tag_name }} -m "chore(Release): bump version %s"'
3033

3134
- name: Publish to NPM
3235
run: npm publish

0 commit comments

Comments
 (0)