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 bf203f0 commit f80de0aCopy full SHA for f80de0a
.github/workflows/release.yml
@@ -64,10 +64,11 @@ jobs:
64
- name: bump VERSION
65
id: bump
66
run: |
67
- set -ex
+ set -eux
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")"
+ 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