We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42881f6 commit 33d1b59Copy full SHA for 33d1b59
.github/workflows/publish.yml
@@ -20,13 +20,16 @@ jobs:
20
21
- name: Install dependencies
22
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"
26
27
- name: Run final tests
28
# npm run test is excluded here intentionally
29
run: npm run lint && npm run prettier
30
31
- name: Version package
- 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"'
33
34
- name: Publish to NPM
35
run: npm publish
0 commit comments