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