We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bba78e commit 322ef7aCopy full SHA for 322ef7a
1 file changed
.github/workflows/release.yml
@@ -62,8 +62,7 @@ jobs:
62
env:
63
GITHUB_TOKEN: ${{ steps.octo-sts.outputs.token }}
64
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
65
- GIT_AUTHOR_NAME: octo-sts[bot]
66
- GIT_AUTHOR_EMAIL: ${{ steps.get-user-id.outputs.user-id }}+octo-sts[bot]@users.noreply.github.com
67
- GIT_COMMITTER_NAME: octo-sts[bot]
68
- GIT_COMMITTER_EMAIL: ${{ steps.get-user-id.outputs.user-id }}+octo-sts[bot]@users.noreply.github.com
69
- run: npx semantic-release
+ run: |
+ git config --global user.name 'octo-sts[bot]'
+ git config --global user.email "${{ steps.get-user-id.outputs.user-id }}+octo-sts[bot]@users.noreply.github.com"
+ npx semantic-release
0 commit comments