File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 4848 - name : Configure Git
4949 # needed for push back of changes
5050 run : |
51- set -ex
51+ set -eux
5252 git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com"
5353 git config --local user.name "${GITHUB_ACTOR}"
5454 - name : Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
5959 - name : bump VERSION
6060 id : bump
6161 run : |
62- set -ex
63- VERSION="$(npm version "$NPMV_NEWVERSION" --message "$NPMV_MESSAGE" --preid "$NPMV_PREID")"
62+ set -eux
63+ COMMIT_SIG="Signed-off-by: $(git config user.name) <$(git config user.email)>"
64+ VERSION="$(npm version "$NPMV_NEWVERSION" --message "$NPMV_MESSAGE"$'\n\n'"$COMMIT_SIG" --preid "$NPMV_PREID")"
6465 echo "::debug::new version = $VERSION"
6566 VERSION_PLAIN="${VERSION:1}" # remove 'v' prefix
6667 echo "::debug::plain version = $VERSION_PLAIN"
You can’t perform that action at this time.
0 commit comments