Skip to content

Commit bf203f0

Browse files
committed
f
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent d5bd5a1 commit bf203f0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ jobs:
6565
id: bump
6666
run: |
6767
set -ex
68-
VERSION="$(npm version "$NPMV_NEWVERSION" --message "$NPMV_MESSAGE" --preid "$NPMV_PREID")"
68+
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")"
6971
echo "::debug::new version = $VERSION"
7072
VERSION_PLAIN="${VERSION:1}" # remove 'v' prefix
7173
echo "::debug::plain version = $VERSION_PLAIN"

0 commit comments

Comments
 (0)