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 f74f985 commit 5ddd76bCopy full SHA for 5ddd76b
.github/workflows/release.yml
@@ -41,6 +41,10 @@ jobs:
41
run: npm run format:check
42
- name: npm auth
43
run: npm set "//registry.npmjs.org/:_authToken" ${{ env.NPM_TOKEN }}
44
+ - name: config git user
45
+ run: |
46
+ git config --global user.name ${{ secrets.ACTION_GITHUB_USERNAME }};
47
+ git config --global user.email ${{ secrets.ACTION_GITHUB_EMAIL }};
48
- name: perform release
49
run: |
50
npm run release -- \
0 commit comments