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 d5bd5a1 commit bf203f0Copy full SHA for bf203f0
.github/workflows/release.yml
@@ -65,7 +65,9 @@ jobs:
65
id: bump
66
run: |
67
set -ex
68
- VERSION="$(npm version "$NPMV_NEWVERSION" --message "$NPMV_MESSAGE" --preid "$NPMV_PREID")"
+ git config user.name 'release bot'
69
+ git config user.email '[email protected]'
70
+ VERSION="$(npm version "$NPMV_NEWVERSION" --message "$NPMV_MESSAGE\n\nSigned-off-by: $(git config user.name) <$(git config user.email)> " --preid "$NPMV_PREID")"
71
echo "::debug::new version = $VERSION"
72
VERSION_PLAIN="${VERSION:1}" # remove 'v' prefix
73
echo "::debug::plain version = $VERSION_PLAIN"
0 commit comments